forked from bradyzp/LongmanTide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (45 loc) · 1.61 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
__version__ = '0.4.0-beta.1'
requirements = [
'numpy == 1.18.5',
'pandas == 1.0.4'
]
def join_relpath(file):
return os.path.join(os.path.dirname(__file__), file)
with open(join_relpath('LICENSE'), 'r') as fd:
_license = fd.read().strip()
with open(join_relpath('README.rst'), 'r') as fd:
long_description = fd.read().strip()
setup(
name='tidegravity',
version=__version__,
packages=['tidegravity'],
install_requires=requirements,
extras_require={
'MPL': ['matplotlib>=2.2.0']
},
tests_require=['pytest'],
python_requires='>=3.5.*',
description="Tide gravitational correction based on I.M. Longman's Formulas for "
"Computing the Tidal Accelerations Due to the Moon and the Sun",
author='Zachery P. Brady, John R. Leeman',
author_email='[email protected]',
url='https://github.com/bradyzp/LongmanTide/',
download_url='https://github.com/bradyzp/LongmanTide',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Microsoft',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries',
],
long_description=long_description,
)