forked from oceanobservatories/mi-instrument
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.57 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
#!/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 = '0.2.1'
setup( name = 'marine-integrations',
version = version,
description = 'OOINet Marine Integrations',
url = 'https://github.com/ooici/marine-integrations',
download_url = 'http://sddevrepo.oceanobservatories.org/releases/',
license = 'BSD',
author = 'Ocean Observatories Initiative',
author_email = '[email protected]',
keywords = ['ooici'],
packages = find_packages(),
dependency_links = [
'http://sddevrepo.oceanobservatories.org/releases/',
'https://github.com/ooici/pyon/tarball/master#egg=pyon',
#'https://github.com/ooici/utilities/tarball/v2012.12.12#egg=utilities-2012.12.12',
],
test_suite = 'pyon',
entry_points = {
'console_scripts' : [
'package_driver=ion.idk.scripts.package_driver:run',
'start_driver=ion.idk.scripts.start_driver:run',
'test_driver=ion.idk.scripts.test_driver:run',
],
},
install_requires = [
'gitpy==0.6.0',
'snakefood==1.4',
'ntplib>=0.1.9',
'apscheduler==2.1.0',
#'utilities',
],
)