-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
50 lines (45 loc) · 1.69 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 = 'coverage-model',
version = '2.1.0',
description = 'OOI ION Coverage Model',
url = 'https://github.com/blazetopher/coverage-model',
download_url = 'http://sddevrepo.oceanobservatories.org/releases/',
license = 'BSD',
author = 'Christopher Mueller',
author_email = '[email protected]',
keywords = ['ooici','coverage model'],
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',
'requests', # It should be hardcoded to a version imho but it's not in pyon
# 'scipy==0.10.1',
],
)