-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 986 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 986 Bytes
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
from setuptools import setup, find_packages
setup(
name='rtide',
version='1.0.0',
author='Thomas Monahan',
author_email='thomas.monahan@eng.ox.ac.uk',
description='RTide: A python implementation of the ML Response Framework for Tidal Analyis and Prediction',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/thomasmonahan/RTide',
packages=find_packages(),
license='Business Source License 1.1',
install_requires=[
'numpy',
'pandas',
'tensorflow',
'utide',
'scipy',
'skyfield',
'shap',
'matplotlib',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
],
python_requires='>=3.6',
)