-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.2 KB
/
pyproject.toml
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
# pyproject.toml
[build-system]
requires = ["setuptools>=67.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stompy-ocean"
version = "0.0.5"
description = "Various python modules related to modeling and oceanographic data analysis."
readme = {file = "README.md", content-type = "text/markdown"}
authors = [{ name = "Rusty Holleman", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["modeling", "oceanography", "grid"]
dependencies = ["cmocean",
"matplotlib",
"netCDF4",
"pandas",
"requests",
"scipy",
"Shapely",
"six",
"xarray",
"seawater",
"gdal<3.9",
"numpy<2.0",
"cgal"
]
requires-python = ">=3.0"
[tool.setuptools]
packages=['stompy', 'stompy.grid', 'stompy.io', 'stompy.io.local',
'stompy.model', 'stompy.model.delft', 'stompy.model.fvcom',
'stompy.model.pypart', 'stompy.model.suntans',
'stompy.plot', 'stompy.plot.cmaps',
'stompy.spatial']
[tool.setuptools.package-data]
stompy = ["tide_consts.txt"]
[project.urls]
Homepage = "https://github.com/rustychris/stompy"