-
Notifications
You must be signed in to change notification settings - Fork 205
/
setup.py
57 lines (53 loc) · 1.73 KB
/
setup.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
import sys
lbforum = __import__('lbforum')
readme_file = 'README.rst'
try:
long_description = open(readme_file).read()
except IOError:
sys.stderr.write(
"[ERROR] Cannot find file specified as "
"``long_description`` (%s)\n" % readme_file
)
sys.exit(1)
install_requires = [
'Django==1.10',
'django-el-pagination==3.0.1',
'easy_thumbnails==2.3',
'beautifulsoup4==4.5.1',
'python-dateutil==2.5.3',
'django-constance==1.2',
'django_picklefield==0.3.2',
'django-lbattachment==1.0.2',
'django-lbutils==1.0.1',
'djangorestframework==3.4.6',
]
setup(name='LBForum',
version=lbforum.get_version(),
description='A forum engine written in Python using Django',
long_description=long_description,
zip_safe=False,
author='vicalloy',
author_email='[email protected]',
url='https://github.com/vicalloy/LBForum',
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=install_requires,
test_suite='tests.main',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities'
],
)