-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
105 lines (92 loc) · 2.1 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[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 = "josh.mitchell@openforcefield.org" },
]
maintainers = [
{ name = "Josh Mitchell", email = "josh.mitchell@openforcefield.org" },
]
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]
default-version = "v0.0.0.dev0+VERSIONMISSING"
[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",
"**/_tests/data",
"**/node_modules",
"**/__pycache__",
"**/.*",
]
"ignore" = [
".soap",
"docs",
"examples",
"**/_tests/data",
"**/node_modules",
"**/__pycache__",
"**/.*",
]
typeCheckingMode = "strict"
reportUnsupportedDunderAll = "error"
reportUnknownVariableType = "warning"
reportUnknownParameterType = "error"
reportUnknownArgumentType = "warning"
reportUnknownLambdaType = "warning"
reportUnknownMemberType = "warning"
reportAny = "information"
reportMissingTypeStubs = "none"
reportUnnecessaryIsInstance = "none"
reportUnnecessaryTypeIgnoreComment = "error"
reportPrivateUsage = "none"
reportMissingTypeArgument = "none"
strictGenericNarrowing = true
[tool.ruff]
namespace-packages = ["openff/pablo/"]
[tool.ruff.lint]
ignore = ["E731"]
[tool.ruff.lint.isort]
known-third-party = ["openff.toolkit", "openff.utilities", "openff.units"]
known-first-party = ["openff.pablo"]