-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (34 loc) · 1.15 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
from setuptools import setup, find_packages
from distutils.extension import Extension
# Forces numpy to be installed
import numpy as np
import sys
if 'setuptools.extension' in sys.modules:
m = sys.modules['setuptools.extension']
m.Extension.__dict__ = m._Extension.__dict__
packages = find_packages()
classifiers = ''' Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Education
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Education
Topic :: Software Development :: Libraries :: Python Modules'''
setup(name = 'ooitk',
version='2.1.0',
description='Ocean Observatories Initiative Toolkit',
long_description=open('README.md').read(),
license='LICENSE.txt',
author='Luke Campbell',
author_email='[email protected]',
url='https://github.com/ooici/ion-functions/',
classifiers=classifiers.split('\n'),
packages=packages,
keywords=['oceanography', 'seawater'],
install_requires=[
'ipython==0.13.0',
'requests',
'readline',
]
)