-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (34 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
44 lines (34 loc) · 1.12 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
[build-system]
requires = ["setuptools", "versioningit"]
build-backend = "setuptools.build_meta"
[project]
name = "somd2"
authors = [
{ name = "Matthew Burman", email = "matthew@openbiosim.org" },
{ name = "Lester Hedges", email = "lester@openbiosim.org" },
{ name = "Christopher Woods", email = "christopher@openbiosim.org" },
{ name = "Julien Michel", email = "julien@openbiosim.org" },
]
description = "An open-source engine for alchemical free-energy calculations"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[tool.setuptools]
license-files = ["LICENSE"]
[project.scripts]
somd2 = "somd2.app:somd2"
[project.urls]
repository = "https://github.com/OpenBioSim/somd2"
[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/somd2/_version.py"
[tool.ruff.lint]
ignore = ["E402"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["F841"]