forked from joshuakarjala/django-hunger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (42 loc) · 1.26 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
#!/usr/bin/env python
from setuptools import setup, find_packages
DESCRIPTION = "A Django app to manage a private beta phase."
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]
INSTALL_REQUIRES = ['']
try:
import importlib # pylint: disable=unused-import
except ImportError:
INSTALL_REQUIRES.append('importlib')
TESTS_REQUIRE = [
'Django>=1.3',
]
setup(
name='django-hunger',
version='2.1.3.dev0',
packages=find_packages(exclude=['tests', 'example']),
author='Joshua Karjala-Svenden',
author_email='[email protected]',
url='https://github.com/joshuakarjala/django-hunger/',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
extras_require={'test': TESTS_REQUIRE},
test_suite='runtests.runtests',
include_package_data=True,
)