-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (38 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smee"
description = "Differentiably compute energies of molecules using SMIRNOFF force fields."
authors = [ {name = "Simon Boothroyd"} ]
license = { text = "MIT" }
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
[tool.setuptools.packages.find]
include = ["smee*"]
[tool.setuptools_scm]
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
ignore = ["C901","E402","E501"]
select = ["B","C","E","F","W","B9"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.coverage.run]
omit = ["**/tests/*", "smee/mm/_fe.py"]
[tool.coverage.report]
exclude_lines = [
"@overload",
"pragma: no cover",
"raise NotImplementedError",
"if __name__ = .__main__.:",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:",
]
[tool.pytest.ini_options]
markers = [
"fe: run free energy regression tests",
]
addopts = "-m 'not fe'"