Created
October 1, 2014 11:53
-
-
Save jqlblue/165d50a949cd4aae2191 to your computer and use it in GitHub Desktop.
cabot setup.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from setuptools import setup, find_packages | |
setup( | |
name='cabot', | |
version='0.0.0-dev', | |
description="Self-hosted, easily-deployable monitoring and alerts service" | |
" - like a lightweight PagerDuty", | |
long_description=open('README.md').read(), | |
author="Arachnys", | |
author_email='[email protected]', | |
url='http://cabotapp.com', | |
license='MIT', | |
install_requires=[ | |
'Django==1.6.5', | |
'PyJWT==0.1.2', | |
'South==1.0', | |
'amqp==1.3.3', | |
'anyjson==0.3.3', | |
'argparse==1.2.1', | |
'billiard==3.3.0.13', | |
'celery==3.1.7', | |
'distribute==0.6.24', | |
'dj-database-url==0.2.2', | |
'django-appconf==0.6', | |
'django-celery==3.1.1', | |
'django-celery-with-redis==3.0', | |
'django-compressor==1.4', | |
'django-jsonify==0.2.1', | |
'django-mptt==0.6.0', | |
'django-polymorphic==0.5.6', | |
'django-redis==1.4.5', | |
'django-smtp-ssl==1.0', | |
'gunicorn==18.0', | |
'gevent==1.0.1', | |
'hiredis==0.1.1', | |
'httplib2==0.7.7', | |
'icalendar==3.2', | |
'kombu==3.0.8', | |
'mock==1.0.1', | |
'psycogreen==1.0', | |
'psycopg2==2.5.1', | |
'pytz==2013.9', | |
'redis==2.9.0', | |
'requests==0.14.2', | |
'six==1.5.1', | |
'twilio==3.4.1', | |
'wsgiref==0.1.2', | |
'python-dateutil==2.1', | |
'MySQL-python==1.2.5', | |
], | |
packages=find_packages(), | |
include_package_data=True, | |
zip_safe=False, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment