-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (29 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
37 lines (29 loc) · 906 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
35
36
37
[build-system]
requires = ["setuptools", "versioningit"]
build-backend = "setuptools.build_meta"
[project]
name = "loch"
authors = [
{ name = "Lester Hedges", email = "lester@openbiosim.org" },
]
description = "An open-source engine for Grand-Canonical Monte Carlo (GCMC) water sampling."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[tool.setuptools]
license-files = ["LICENSE"]
[project.urls]
repository = "https://github.com/OpenBioSim/loch"
[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/loch/_version.py"
[tool.ruff.lint]
ignore = ["E402"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["F841"]