forked from disqus/gargoyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.17 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
tests_require = [
'Django>=1.1',
'South',
]
setup(
name='gargoyle',
version='0.4.0',
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=[
'django-modeldict>=1.1.6',
'nexus>=0.1.7',
'django-jsonfield',
],
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'
],
)