-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (37 loc) · 970 Bytes
/
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ismip6_ocean_forcing"
dynamic = ["version"]
description = "Script for creating ISMIP6 ocean forcing"
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"dask",
"descartes>=1.1.0",
"gsw",
"imageio",
"matplotlib",
"netcdf4",
"numpy",
"requests",
"progressbar2",
"pyshp",
"scikit-fmm",
"scipy",
"shapely>=2.0",
"xarray"
]
[project.scripts]
ismip6_ocean_forcing = "ismip6_ocean_forcing.__main__:main"
[tool.setuptools.dynamic]
version = { attr = "ismip6_ocean_forcing.version.__version__" }
[tool.setuptools.packages.find]
exclude = ["conda", "example_usage", "licenses", "preprocess"]
[project.urls]
"Bug Tracker" = "https://github.com/ismip/ismip6-antarctic-ocean-forcing/issues"