-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 928 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
#!/usr/bin/env python
setupdict = {
'name' : 'zkproto',
'version' : '0.1',
'description' : 'CEI Zookeeper prototype',
'license' : 'Apache 2.0',
'author' : 'CEI',
'author_email' : 'labisso@uchicago.edu',
'keywords': ['ooici','cei'],
'classifiers' : [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'],
}
from setuptools import setup, find_packages
setupdict['packages'] = find_packages()
setupdict['install_requires'] = ['supervisor', 'zkpython', 'gevent']
setupdict['entry_points'] = {
'console_scripts': [
'zkproto-worker=zkproto.worker:main',
'zkproto-trials=zkproto.trials:main'
]
}
setup(**setupdict)