-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (60 loc) · 1.43 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
[build-system]
requires = [
"setuptools",
"versioneer[toml]==0.29",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "openff-nagl"
description = "A playground for applying graph convolutional networks to molecules."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{name = "Lily Wang", email = "[email protected]"},
]
maintainers = [
{name = "Lily Wang", email = "[email protected]"},
]
requires-python = ">=3.10"
dynamic = ["version"]
[tool.setuptools.packages]
find = {}
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-xdist>=2.5",
"pytest-cov>=3.0",
]
doc = [
"sphinx>=1.8",
"openff-sphinx-theme @ git+https://github.com/openforcefield/openff-sphinx-theme.git@main",
]
[project.scripts]
openff-nagl = "openff.nagl.cli:cli"
[project.urls]
source = "https://github.com/openforcefield/openff-nagl"
documentation = "https://docs.openforcefield.org/projects/nagl/"
[tool.pytest.ini_options]
testpaths = [
"openff/nagl/tests",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "openff/nagl/_version.py"
versionfile_build = "openff/nagl/_version.py"
tag_prefix = "v"
parentdir_prefix = "openff-nagl-"
[tool.coverage.run]
omit = [
"*/*/_tests/*",
"openff/nagl/_version.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
"@overload",
]