-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (44 loc) · 1.55 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
import sys
# Add /usr/local/include to the path for macs, fixes easy_install for several packages (like gevent and pyyaml)
if sys.platform == 'darwin':
os.environ['C_INCLUDE_PATH'] = '/usr/local/include'
setup( name = 'externalization',
version = '3.0.0',
description = 'OOI Network Externalization services',
url = '',
download_url = 'http://sddevrepo.oceanobservatories.org/releases/',
license = 'Apache 2.0',
author = 'Andrew Bird',
author_email = '',
keywords = ['ooici','eoi'],
packages = find_packages(),
dependency_links = [
'http://sddevrepo.oceanobservatories.org/releases/',
'https://github.com/lukecampbell/python-gsw/tarball/master#egg=gsw-3.0.1a1',
],
test_suite = '',
install_requires = [
'pyon',
'pyzmq==2.2.0',
'gevent_zeromq==0.2.5',
'netCDF4>=0.9.8',
'numexpr==2.1',
'h5py==2.2.0',
# 'rtree==0.7.0', # Removed due to memory leak - see commit: 2e4af870905c64d5f3435744177084c905833db3
'pidantic',
'nose==1.1.2', # must specify to avoid GSW from getting the latest version - which conflicts with pyon's
'greenlet==0.4.0', # must specify, some other dependency pulls 0.4.1...conflicts with pyon's
'gsw==3.0.1a1',
'pydot==1.0.28',
'networkx==1.7',
'pyparsing==1.5.6',
'msgpack-python==0.1.13',
# 'scipy==0.10.1',
],
)