-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 951 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 951 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
from setuptools import find_packages, setup
setup(
name="slocum-ad2cp", # 🔑 PyPI package name (must be lowercase, hyphens allowed)
version="2.0.0",
description="Processing and analysis of TWR Slocum Glider-Nortek AD2CP data",
author="Joe Gradone",
license="MIT",
packages=find_packages(where="src"), # look inside src/
package_dir={"": "src"}, # root is src/
install_requires=[
"numpy",
"xarray",
"pandas",
"netCDF4",
"scipy",
"erddapy",
"gsw",
],
python_requires=">=3.9", # keep consistent with pyproject.toml
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
url="https://github.com/JGradone/Slocum-AD2CP",
project_urls={
"Bug Tracker": "https://github.com/JGradone/Slocum-AD2CP/issues",
},
)