-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.39 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "modelmimic"
requires-python = ">=3.9"
authors = [{ name = "Michael Kelleher", email = "[email protected]" }]
description = "Generate model-like data, _mimic_ the output of various CIME tests."
readme = "README.md"
license = { text = "BSD-3-Clause" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["numpy", "xarray", "netCDF4", "pandas", "toml"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/LIVVkit/modelmimic/"
Documentation = "https://livvkit.github.io/modelmimic/"
[project.optional-dependencies]
dev = ["ruff", "isort", "black", "pytest"]
[tool.setuptools.dynamic]
version = { attr = "modelmimic.__version__" }
[tool.pydoctor]
project-name = "ModelMimic"
make-html = true
html-output = "./docs"
docformat = "numpy"
intersphinx = "https://docs.python.org/3/objects.inv"
theme = "readthedocs"
privacy = ["PRIVATE:**.__*__", "PUBLIC:**.__init__"]
add-package = ["./modelmimic"]