-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 864 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 864 Bytes
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
[build-system]
requires = ["setuptools", "versioningit"]
build-backend = "setuptools.build_meta"
[project]
name = "ghostly"
authors = [
{ name = "Lester Hedges", email = "lester@openbiosim.org" },
]
description = "Ghost atom bonded modifications for alchemical free energy simulations"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[tool.setuptools]
license-files = ["LICENSE"]
[project.scripts]
ghostly = "ghostly._cli:run"
[project.urls]
repository = "https://github.com/OpenBioSim/ghostly"
[tool.setuptools.packages.find]
where = ["src"]
[tool.versioningit.format]
distance = "{base_version}+{distance}.{vcs}{rev}"
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
[tool.versioningit.write]
file = "src/ghostly/_version.py"