2014-03-05 16:28:32 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
2014-12-05 16:52:33 +00:00
|
|
|
from os import environ as env
|
|
|
|
|
|
|
|
# pull in active plugins
|
|
|
|
plugins = env['CABOT_PLUGINS_ENABLED'].split(',') if 'CABOT_PLUGINS_ENABLED' in env else ["cabot_alert_hipchat", "cabot_alert_twilio", "cabot_alert_email"]
|
2014-03-05 16:28:32 -06:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='cabot',
|
2014-12-05 16:52:33 +00:00
|
|
|
version='0.0.1-dev',
|
2014-03-05 16:28:32 -06:00
|
|
|
description="Self-hosted, easily-deployable monitoring and alerts service"
|
|
|
|
" - like a lightweight PagerDuty",
|
|
|
|
long_description=open('README.md').read(),
|
|
|
|
author="Arachnys",
|
|
|
|
author_email='info@arachnys.com',
|
|
|
|
url='http://cabotapp.com',
|
|
|
|
license='MIT',
|
|
|
|
install_requires=[
|
2014-12-05 16:52:33 +00:00
|
|
|
'Django==1.6.8',
|
2014-09-19 15:11:25 +01:00
|
|
|
'Markdown==2.5',
|
2014-03-05 16:28:32 -06:00
|
|
|
'PyJWT==0.1.2',
|
2014-08-01 12:51:07 -06:00
|
|
|
'South==1.0',
|
2016-04-18 13:27:38 +02:00
|
|
|
'amqp==1.4.9',
|
2014-03-05 16:28:32 -06:00
|
|
|
'anyjson==0.3.3',
|
2014-08-01 09:36:20 -06:00
|
|
|
'argparse==1.2.1',
|
2016-04-18 13:27:38 +02:00
|
|
|
'billiard==3.3.0.23',
|
|
|
|
'celery==3.1.23',
|
2016-05-14 00:06:40 +01:00
|
|
|
'distribute==0.7.3',
|
2014-03-05 16:28:32 -06:00
|
|
|
'dj-database-url==0.2.2',
|
|
|
|
'django-appconf==0.6',
|
|
|
|
'django-celery==3.1.1',
|
|
|
|
'django-celery-with-redis==3.0',
|
2014-08-01 12:51:07 -06:00
|
|
|
'django-compressor==1.4',
|
2014-09-17 13:39:10 +09:00
|
|
|
'django-filter==0.7',
|
2014-03-05 16:28:32 -06:00
|
|
|
'django-jsonify==0.2.1',
|
2014-08-01 12:51:07 -06:00
|
|
|
'django-polymorphic==0.5.6',
|
2014-03-05 16:28:32 -06:00
|
|
|
'django-redis==1.4.5',
|
|
|
|
'django-smtp-ssl==1.0',
|
2014-09-17 13:39:10 +09:00
|
|
|
'djangorestframework==2.4.2',
|
2014-03-05 16:28:32 -06:00
|
|
|
'gunicorn==18.0',
|
2014-07-31 21:29:23 -06:00
|
|
|
'gevent==1.0.1',
|
2014-03-05 16:28:32 -06:00
|
|
|
'hiredis==0.1.1',
|
|
|
|
'httplib2==0.7.7',
|
|
|
|
'icalendar==3.2',
|
2016-04-18 13:27:38 +02:00
|
|
|
'kombu==3.0.34',
|
2014-03-05 16:28:32 -06:00
|
|
|
'mock==1.0.1',
|
2014-07-31 21:29:23 -06:00
|
|
|
'psycogreen==1.0',
|
2014-03-05 16:28:32 -06:00
|
|
|
'psycopg2==2.5.1',
|
2014-12-05 16:52:33 +00:00
|
|
|
'pytz==2014.10',
|
2014-03-05 16:28:32 -06:00
|
|
|
'redis==2.9.0',
|
2016-02-10 08:21:36 -05:00
|
|
|
'requests==2.9.1',
|
2014-03-05 16:28:32 -06:00
|
|
|
'six==1.5.1',
|
|
|
|
'twilio==3.4.1',
|
|
|
|
'wsgiref==0.1.2',
|
|
|
|
'python-dateutil==2.1',
|
2015-05-10 21:40:39 -04:00
|
|
|
'django-auth-ldap==1.2.6',
|
2014-12-05 16:52:33 +00:00
|
|
|
] + plugins,
|
2014-03-05 16:28:32 -06:00
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
)
|