-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
102 lines (87 loc) · 2.08 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
[build-system]
requires = [
"setuptools>=61.2",
"versioningit",
]
build-backend = "setuptools.build_meta"
[project]
name = "gufe"
description = ""
readme = "README.md"
authors = [{name = "The OpenFE developers", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
]
urls = {Homepage = "https://github.com/OpenFreeEnergy/gufe"}
requires-python = ">= 3.10"
dependencies = [
"numpy",
"networkx",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-xdist",
]
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.mypy]
files = "gufe"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "gufe.vendor.*"
ignore_errors = true
[tool.coverage.run]
omit = [
"*/_version.py",
"*/tests/dev/*py",
"gufe/tests/*",
"gufe/vendor/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"pragma: no-cover",
"-no-cov",
"raise NotImplementedError",
'\.\.\.',
]
[tool.versioningit]
default-version = "1+unknown"
[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.vcs]
method = "git"
match = ["*"]
default-tag = "0.0.0"
[tool.black]
line-length = 120
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
profile = "black"
known_first_party = ["gufe"]
[tool.interrogate]
fail-under = 0
ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
# possible values for verbose: 0 (minimal output), 1 (-v), 2 (-vv)
verbose = 2
color = true
exclude = ["build", "docs"]