2010-12-16 10:40:01 -08:00
#!/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
2011-05-06 13:00:18 -07:00
tests_require = [
2011-05-06 16:46:17 -07:00
' Django>=1.1 ' ,
2011-05-06 13:00:18 -07:00
' South ' ,
]
2010-12-16 10:40:01 -08:00
setup (
name = ' gargoyle ' ,
2011-12-06 14:38:21 -08:00
version = ' 0.5.2 ' ,
2010-12-16 10:45:42 -08:00
author = ' DISQUS ' ,
author_email = ' opensource@disqus.com ' ,
2010-12-16 10:40:01 -08:00
url = ' http://github.com/disqus/gargoyle ' ,
2011-05-06 13:00:18 -07:00
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. ' ,
2011-07-06 10:43:58 -07:00
packages = find_packages ( exclude = [ " example_project " , " tests " ] ) ,
2010-12-16 10:40:01 -08:00
zip_safe = False ,
2010-12-16 11:46:49 -08:00
install_requires = [
2011-08-09 18:27:42 -07:00
' django-modeldict>=1.1.6 ' ,
2011-05-05 18:10:49 -07:00
' nexus>=0.1.7 ' ,
2010-12-16 11:46:49 -08:00
' django-jsonfield ' ,
] ,
2011-06-17 13:18:44 -07:00
license = ' Apache License 2.0 ' ,
2011-05-06 13:00:18 -07:00
tests_require = tests_require ,
extras_require = { ' test ' : tests_require } ,
test_suite = ' runtests.runtests ' ,
2010-12-16 10:40:01 -08:00
include_package_data = True ,
classifiers = [
' Framework :: Django ' ,
' Intended Audience :: Developers ' ,
' Intended Audience :: System Administrators ' ,
' Operating System :: OS Independent ' ,
' Topic :: Software Development '
] ,
)