-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = [ "setuptools>=41", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "momlevel"
description = "Tools to diagnose sea level in the MOM Ocean Model"
dynamic = ["version"]
authors = [
{name = "John Krasting", email="[email protected]"}
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["oceanography", "sealevel", "sea-level", "slr", "mom", "mom6", "model", "ocean"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: Public Domain",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"importlib_metadata <5.0.0",
"nc-time-axis",
"netcdf4",
"numpy >=1.21.0",
"scikit-learn >=1.0.1",
"xarray >=0.20.0",
"xgcm",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
homepage = "https://github.com/jkrasting/momlevel"
documentation = "https://momlevel.readthedocs.io"
repository = "https://github.com/jkrasting/momlevel"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}"
dirty_template = "{tag}"
starting_version = "0.0.5" # this is a backup for pip <= 22.0 where git-versioning doesn't work
[tool.dynamic]
version = "placeholder" # this is a placeholder for the version pulled with git-versioning
[tool.setuptools.package-data]
momlevel = [
"resources/CM4_historical.nc",
"resources/NWA12_grid_dataframe.csv",
"resources/NWA12_sample_grid_data.nc",
"resources/geolocate_points_reference.csv",
"resources/us_tide_gauges.csv",
"resources/global_tide_gauges.csv",
]