-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
59 lines (53 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
51
52
53
54
55
56
57
58
#!/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'
version = '3.0.3-dev'
setup( name = 'coi-services',
version = version,
description = 'OOINet System',
url = 'https://github.com/ooici/coi-services',
download_url = 'http://sddevrepo.oceanobservatories.org/releases/',
license = 'BSD',
author = 'Michael Meisinger',
author_email = '[email protected]',
keywords = ['ooi','ooinet', 'pyon'],
packages = find_packages(),
dependency_links = [
'http://sddevrepo.oceanobservatories.org/releases/',
],
test_suite = 'pyon',
install_requires = [
'pyzmq==2.2.0',
'coverage-model',
'ion-functions',
'pyon',
'Flask==0.9',
'python-dateutil==1.5',
'WebTest==1.4.0',
'seawater==2.0.1',
'pygsw==0.0.10',
'matplotlib==1.1.1',
'Pydap==3.3.RC1',
'netCDF4==1.0.9',
'pyparsing==1.5.6',
'ntplib',
'xlrd==0.8.0',
'xlwt==0.7.5',
'apscheduler==2.1.0',
'pyproj==1.9.3',
'udunitspy==0.0.6',
'beautifulsoup4==4.2.1',
'pytz==2014.4'
],
entry_points = """
[pydap.handler]
coverage = ion.util.pydap.handlers.coverage:Handler
""",
)