-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
82 lines (77 loc) · 2.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python -w
# Copyright 2013 University of Chicago
import os
import sys
from setuptools import setup, find_packages
homebrew_include_path = '/usr/local/include'
if sys.platform == 'darwin' and os.path.isdir(homebrew_include_path):
os.environ['C_INCLUDE_PATH'] = homebrew_include_path
version = '2.1.1'
requires = [
'httplib2>=0.7.1',
'boto >= 2.6',
'apache-libcloud>=0.11.1',
'kazoo==1.2.1',
'dashi>=0.2.1',
'gevent>=0.13.7',
'simplejson',
'pychef',
'mock'
]
tests_require = [
'epuharness',
'nose',
'mock'
]
extras_require = {
'test': tests_require,
'exceptional': ['exceptional-python'],
'statsd': ['statsd'],
}
entry_points = {
'console_scripts': [
'epu-management-service=epu.dashiproc.epumanagement:main',
'epu-provisioner-service=epu.dashiproc.provisioner:main',
'epu-processdispatcher-service=epu.dashiproc.processdispatcher:main',
'epu-zktool=epu.zkcli:main',
'epu-high-availability-service=epu.dashiproc.highavailability:main',
'epu-dtrs=epu.dashiproc.dtrs:main',
]
}
scripts = [
"scripts/epu-process"
]
package_data = {
'epu': [
'config/*.yml'
]
}
setup(
name='epu',
version=version,
description='OOICI CEI Elastic Processing Unit Services and Agents',
url='https://confluence.oceanobservatories.org/display/CIDev/Common+Execution+Infrastructure+Development',
download_url='http://sddevrepo.oceanobservatories.org/releases',
license='Apache 2.0',
author='CEI',
author_email='[email protected]',
keywords=['ooici', 'cei', 'epu'],
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'
),
packages=find_packages(),
dependency_links=['http://sddevrepo.oceanobservatories.org/releases'],
install_requires=requires,
tests_require=tests_require,
extras_require=extras_require,
test_suite='nose.collector',
entry_points=entry_points,
scripts=scripts,
package_data=package_data,
)