-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
21 lines (19 loc) · 889 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pycurrents_ADCP_processing",
version="1.0.1",
author="Hana Hourston, Di Wan, Lu Guan, Maxim Krassovski",
author_email="[email protected]",
description="A Python package for processing Acoustic Doppler Current Profiler (ADCP) data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/IOS-OSD-DPG/pycurrents_ADCP_processing",
install_requires=['numpy', 'xarray', 'pandas', 'datetime', 'gsw', 'netCDF4', 'scipy', 'matplotlib', 'shapely',
'ruamel.yaml'],
packages=setuptools.find_packages(),
package_data={'pycurrents_ADCP_processing': ['*.geojson', '*.yml']},
classifiers=["Programming Language :: Python :: 3"],
python_requires='~=3.7',
)