-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.42 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
[build-system]
requires = [ "setuptools>=61", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "gfdlnb"
description = "GFDL Model Analysis Notebooks"
dynamic = ["version"]
authors = [
{name = "John Krasting", email="john.krasting@noaa.gov"}
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">=3.11"
keywords = ["climate modeling", "gfdl"]
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",
"numpy >=1.21.0",
"xarray >=0.20.0",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
homepage = "https://github.com/jkrasting/mar"
documentation = "https://gfdl-notebooks.readthedocs.io"
repository = "https://github.com/jkrasting/mar"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}"
dirty_template = "{tag}"
starting_version = "0.0.1"
[tool.dynamic]
version = "placeholder" # this is a placeholder for the version pulled with git-versioning
[tool.setuptools.package-data]
gfdlnb = ["resources/config.yaml","notebooks/ocean/*.ipynb"]
[tool.setuptools]
script-files = ["scripts/gfdl-notebooks"]