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
46 lines (42 loc) · 1.56 KB
/
setup.py
File metadata and controls
46 lines (42 loc) · 1.56 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
#!/usr/bin/env python
"""
@file setup.py
@author Paul Hubbard
@author Michael Meisinger
@date 5/2/10
@brief setup file for OOI LCA architecture prototype project.
"""
setupdict = {
'name' : 'lcaarch',
'version' : '0.2.0',
'description' : 'OOI LCA architecture prototype',
'url': 'http://www.oceanobservatories.org/spaces/display/CIDev/LCAARCH+Development+Project',
'download_url' : 'http://ooici.net/packages',
'license' : 'Apache 2.0',
'author' : 'Michael Meisinger',
'author_email' : 'mmeisinger@ucsd.edu',
'keywords': ['ooci','lcar1'],
'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'],
}
try:
from setuptools import setup, find_packages
setupdict['packages'] = find_packages()
setupdict['test_suite'] = 'lcaarch.test'
setupdict['install_requires'] = ['Twisted', 'magnet', 'pycassa', 'numpy',
'Paste', 'Pydap', 'simplejson', 'httplib2',
'pydap.handlers.netcdf','pydap.handlers.nca',
'pydap.responses.netcdf',
'msgpack-python','gviz_api.py']
setupdict['include_package_data'] = True
setup(**setupdict)
except ImportError:
from distutils.core import setup
setupdict['packages'] = ['lcaarch']
setup(**setupdict)