forked from lincolnloop/salmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 827 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='salmon',
version='0.1.6-dev',
description="A monitoring system built on top of Salt.",
long_description=open('README.rst').read(),
author="Peter Baumgarter",
author_email='pete@lincolnloop.com',
url='https://github.com/lincolnloop/salmon',
license='LICENSE',
install_requires=[
'django==1.5.1',
'django-discover-runner==0.4.0',
'South==0.8.0',
'pyyaml==3.10',
'logan==0.5.5',
'gunicorn>=0.17.2,<0.18.0',
'whisper==0.9.10',
'dj-static==0.0.5',
],
entry_points={
'console_scripts': [
'salmon = salmon.core.runner:main',
],
},
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)