-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (39 loc) · 881 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
32
33
34
35
36
37
38
39
40
41
42
43
import sys
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
if sys.version_info < (2, 7):
raise NotImplementedError("python 2.7 or higher required")
setup(
name='kontrol',
version='1.0.0',
packages=['automaton', 'kontrol'],
install_requires=
[
'jinja2>=2.9.6',
'jsonschema>=2.6.0',
'pykka>=1.2.0',
'python-etcd>=0.4.3',
'pyyaml>=3.12',
'statsd>=2.0.0',
'zerorpc>=0.6.1'
],
package_data={
'kontrol':
[
'log.cfg'
],
'automaton':
[
'log.cfg'
]
},
entry_points=
{
'console_scripts':
[
'automaton = automaton.main:go',
'kontrol = kontrol.main:go'
]
},
)