generated from readthedocs/tutorial-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.33 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
[project]
name = "hubdocs"
description = "Documentation for the Hubverse collection of collaborative modeling tools"
authors = [
{name = "Consortium of Infectious Disease Modeling Hubs"}
]
maintainers = [
{name = "Alvaro J. Castro", email="[email protected]"},
{name = "Zhian N. Kamvar", email="[email protected]"},
{name = "Anna Krystalli", email="[email protected]"},
]
license = {text = "MIT License"}
dynamic = ["version"]
requires-python = ">=3.9"
readme = "README.md"
dependencies = [
"myst-parser",
"pre-commit>=4.0.1",
"sphinx",
"sphinx-autobuild",
"sphinx-book-theme",
"sphinx-design",
"sphinxcontrib-mermaid",
]
[project.urls]
Repository = "https://github.com/hubverse-org/hubDocs"
Issues = "https://github.com/hubverse-org/hubDocs/issues"
#[build-system]
#requires = ["flit_core >=3.2,<4"]
#build-backend = "flit_core.buildapi"
[build-system]
requires = ['setuptools>=45', 'wheel', "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.codespell]
# the spell checker does not like North Dakota!
ignore-words-list = "ND"
[tool.uv]
# ensure setuptools_scm generates a version number that reflects latest tags
# https://docs.astral.sh/uv/concepts/cache/#dynamic-metadata
cache-keys = [{ git = { commit = true, tags = true } }]