2010-12-16 10:40:01 -08:00
#!/usr/bin/env python
2012-03-01 16:46:24 -08:00
from setuptools import setup , find_packages
2010-12-16 10:40:01 -08:00
2012-05-21 13:33:35 -07:00
try :
import multiprocessing
except :
pass
2011-05-06 13:00:18 -07:00
tests_require = [
2015-01-28 13:13:15 -05:00
' Django>=1.4,<1.8 ' ,
2011-12-15 14:59:42 -08:00
' django-nose ' ,
2012-05-17 15:45:36 -07:00
' nose ' ,
' South ' ,
]
install_requires = [
2012-12-04 11:55:45 -08:00
' django-modeldict>=1.2.0 ' ,
2012-05-17 15:45:36 -07:00
' nexus>=0.2.3 ' ,
2023-09-26 16:01:47 -04:00
' django-jsonfield>=0.9.2,<0.9.16 ' ,
2012-05-17 15:45:36 -07:00
]
2010-12-16 10:40:01 -08:00
setup (
name = ' gargoyle ' ,
2015-01-29 10:59:57 -05:00
version = ' 0.11.0 ' ,
2010-12-16 10:45:42 -08:00
author = ' DISQUS ' ,
author_email = ' opensource@disqus.com ' ,
2015-02-02 16:53:25 -08:00
url = ' https://github.com/disqus/gargoyle ' ,
2012-08-01 17:45:25 -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 ,
2012-05-17 15:45:36 -07:00
install_requires = install_requires ,
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 '
] ,
2012-05-21 13:33:35 -07:00
)