-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.69 KB
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
[build-system]
requires = ["setuptools>=61", "versioningit>=3.0,<4"]
build-backend = "setuptools.build_meta"
# Poetry requires a placeholder when `version` is dynamic (actual value comes from versioningit at build).
[tool.poetry]
version = "0.0.0"
[project]
name = "multibind"
dynamic = ["version"]
description = "A package to find optimal state free energies from a thermodynamic graph."
readme = "README.md"
requires-python = ">=3.10,<3.15"
license = "MIT"
authors = [{ name = "Ian Kenney", email = "ikenney@asu.edu" }]
# Floors: PyPI classifiers / requires_python for CPython 3.10–3.14 (see prior audit).
dependencies = [
"numpy>=1.22.4,<3",
"pandas>=2.3.3,<3",
"scipy>=1.11.4,<2",
"networkx>=3.2,<4",
"xarray>=2024.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9",
"pytest-cov>=5.0,<6",
"sphinx>=8.0,<10",
"versioningit>=3.0,<4",
]
test = [
"pytest>=8.0,<9",
"pytest-cov>=5.0,<6",
]
[project.urls]
Homepage = "https://github.com/BecksteinLab/multibind"
Documentation = "https://multibind.readthedocs.io/"
[tool.setuptools]
packages = ["multibind"]
[tool.versioningit]
# PEP 440 public versions only (no +local), so sdists/wheels are PyPI-safe off-tag.
[tool.versioningit.format]
distance = "{base_version}.dev{distance}"
dirty = "{base_version}"
distance-dirty = "{base_version}.dev{distance}"
[tool.versioningit.tag2version]
# Explicit: tags are vX.Y.Z; published metadata uses X.Y.Z (PEP 440).
rmprefix = "v"
[tool.versioningit.vcs]
# git describe --match=v* so only annotated/lightweight release tags like v0.2.0 are used.
match = ["v*"]
# Shallow clones / no matching tags: synthetic tag v0.0.0 → version 0.0.0 after tag2version.
default-tag = "v0.0.0"