-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
42 lines (38 loc) · 1.05 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def run_setup():
setup(
name='graphitealerts',
version='0.0.1',
description='',
keywords = '',
url='http://github.com/ybrs/graphite-alerts',
author='Aybars Badur',
author_email='aybars.badur@gmail.com',
license='BSD',
packages=['graphitealerts'],
install_requires=[
'Jinja2==2.6',
'PyYAML==3.10',
'distribute==0.6.28',
'pagerduty==0.2.1',
'redis==2.6.2',
'requests==0.14.0',
'python-simple-hipchat==0.1',
],
test_suite='tests',
long_description=read('README.md'),
zip_safe=True,
classifiers=[
],
entry_points="""
[console_scripts]
graphite-alerts=graphitealerts.worker:run
alerts-dev-server=graphitealerts.app:run
""",
)
if __name__ == '__main__':
run_setup()