forked from wesleybowman/UTide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (37 loc) · 1.51 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
import os
from setuptools import setup
import versioneer
rootpath = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
return open(os.path.join(rootpath, *parts), 'r').read()
long_description = '{}\n{}'.format(read('README.rst'), read('LICENSE.txt'))
with open('requirements.txt') as f:
require = f.readlines()
install_requires = [r.strip() for r in require]
setup(name='UTide',
version=versioneer.get_version(),
license='MIT',
long_description=long_description,
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Education',
],
description='Python distribution of the MatLab package UTide.',
url='https://github.com/wesleybowman/UTide',
platforms='any',
keywords=['oceanography', 'tides'],
install_requires=install_requires,
packages=['utide'],
package_data={'utide': ['data/*.npz']},
tests_require=['pytest'],
cmdclass=versioneer.get_cmdclass(),
author=['Wesley Bowman'],
author_email='[email protected]',
zip_safe=False)