forked from ooici/ioncore-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (60 loc) · 2.21 KB
/
Copy pathsetup.py
File metadata and controls
65 lines (60 loc) · 2.21 KB
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
#!/usr/bin/env python
"""
@file setup.py
@author Paul Hubbard
@author Michael Meisinger
@brief setup file for OOI ION Capability Container and Core Modules
@see http://peak.telecommunity.com/DevCenter/setuptools
"""
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from ion import __version__ as version
setup( name = 'ioncore',
version = version,
description = 'OOI ION Python Capability Container and Core Modules',
url = 'http://www.oceanobservatories.org/spaces/display/CIDev/LCAARCH+Development+Project',
download_url = 'http://ooici.net/releases',
license = 'Apache 2.0',
author = 'Michael Meisinger',
author_email = 'mmeisinger@ucsd.edu',
keywords = ['ooici','ioncore'],
packages = find_packages() + ['twisted/plugins'],
dependency_links = [
'http://ooici.net/releases'
],
package_data = {
'twisted.plugins' : [
'twisted/plugins/cc.py'
],
'ion':['core/messaging/*.xml']
},
test_suite = 'ion',
install_requires = [
'Twisted==10.2.0',
'txamqp==0.3',
'simplejson==2.1.2',
'msgpack-python==015final',
'gviz_api.py==1.7.0',
'Telephus==0.7-beta3.3',
'thrift==0.2.0', # thrift is a dependency of Telephus, which should be included there ideally
'M2Crypto==0.21.1-pl1', # patched version to work with CentOS
'ionproto>=0.3.15'
],
entry_points = {
'console_scripts': [
'ion-admin=ion.core.env.ion_admin:main',
],
},
include_package_data = True,
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'
]
)