-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.17 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "uptide"
version = "1.2"
description = "uptide is a python package for tidal calculations. It computes the tidal free surface height or velocities from the amplitudes and phases of the tidal constituents. These amplitudes and phases can be read from global tidal solutions such as TPXO or FES2014. Some limited functionality for tidal harmonic analysis is also available."
authors = [
{ name = "Stephan Kramer", email = "s.kramer@imperial.ac.uk" }
]
license = { text = "GNU Lesser General Public License v3 (LGPLv3)" }
keywords = ["tides", "tidal", "harmonic analysis"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.9.0",
"netcdf4>=1.5.0",
"pytz",
]
[project.optional-dependencies]
test = [
"flake8>=3.0",
"pytest>=5.0"
]
[project.urls]
Homepage = "https://github.com/stephankramer/uptide"
[tool.setuptools]
packages = ["uptide"]