forked from disqus/gargoyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (40 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
import multiprocessing
except:
pass
tests_require = [
'Django>=1.2,<1.6',
'django-nose',
'nose',
'South',
]
install_requires = [
'django-modeldict>=1.2.0',
'nexus>=0.2.3',
'django-jsonfield>=0.8.0,<0.9.4',
]
setup(
name='gargoyle',
version='0.10.9',
author='DISQUS',
author_email='[email protected]',
url='http://github.com/disqus/gargoyle',
description='Gargoyle is a platform built on top of Django which allows you to switch functionality of your application on and off based on conditions.',
packages=find_packages(exclude=["example_project", "tests"]),
zip_safe=False,
install_requires=install_requires,
license='Apache License 2.0',
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='runtests.runtests',
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)