forked from byteweaver/django-forums
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 977 Bytes
/
setup.py
File metadata and controls
38 lines (34 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup, find_packages
import forums
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-forums',
version=forums.__version__,
description='Small standalone django forums application',
long_description=read('README.md'),
license='MIT License',
author='byteweaver',
author_email='contact@byteweaver.net',
url='https://github.com/byteweaver/django-forums',
platforms=['OS Independent'],
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'django',
],
tests_require=[
'django-nose',
'coverage',
'django-coverage',
'factory-boy',
],
test_suite='forums.tests.runtests.runtests',
)