forked from django-userena-ce/django-userena-ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (55 loc) · 1.92 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
58
59
60
61
import sys
from setuptools import setup, find_packages
userena = __import__('userena')
readme_file = 'README.md'
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 = [
'easy_thumbnails',
'django-guardian>=1.4.2',
'html2text',
'Django>=1.11',
]
try:
from collections import OrderedDict
except ImportError:
install_requires.append('ordereddict')
setup(name='django-userena-ce',
version=userena.get_version(),
description='Complete user management application for Django',
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
author='James Meakin',
author_email='[email protected]',
url='https://github.com/django-userena-ce/django-userena-ce/',
download_url='https://github.com/django-userena-ce/django-userena-ce/downloads',
packages=find_packages(exclude=['demo', 'demo.*']),
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.11',
'Framework :: Django :: 2.0',
'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.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities'
],
)