-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (75 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = [
"setuptools >= 40.9.0",
"versioningit",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "openff-pablo"
description = "New, independent implementation of `Topology.from_pdb`"
license = { file = "LICENSE" }
authors = [
{ name = "Josh Mitchell", email = "[email protected]" },
]
maintainers = [
{ name = "Josh Mitchell", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
]
keywords = [
"molecular mechanics",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-xdist>=2.5",
"pytest-cov>=3.0",
]
doc = [
"sphinx",
]
# [project.urls]
# source = "https://github.com/openforcefield/openff-pablo"
# documentation = "https://openff-pablo.readthedocs.io"
[tool.versioningit]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"openff/pablo/_tests",
]
markers = [
"slow: mark the test to be skippable when fast results are needed", # deselect with `-m "not slow"`
]
[tool.setuptools.packages.find]
include = ["openff.*"]
[tool.pyright]
include = ["openff"]
exclude = [
".soap",
"docs",
"examples",
]
typeCheckingMode = "strict"
reportUnsupportedDunderAll = "error"
reportUnknownVariableType = "warning"
reportUnknownParameterType = "error"
reportUnknownArgumentType = "warning"
reportUnknownLambdaType = "warning"
reportUnknownMemberType = "warning"
reportAny = "information"
reportMissingTypeStubs = "none"
reportUnnecessaryIsInstance = "none"
reportUnnecessaryTypeIgnoreComment = "error"
reportPrivateUsage = "information"
strictGenericNarrowing = true
[tool.ruff]
namespace-packages = ["openff/pablo/"]
[tool.ruff.lint.isort]
known-third-party = ["openff.toolkit", "openff.utilities", "openff.units"]
known-first-party = ["openff.pablo"]