-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) 路 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (76 loc) 路 1.7 KB
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "spyrmsd"
version = "0.10.0-dev"
description = "Python tool for symmetry-corrected RMSD"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Rocco Meli", email = "r.meli@bluemail.ch"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.9"
dependencies = ["numpy", "scipy", "rustworkx"]
[project.urls]
Homepage = "https://spyrmsd.readthedocs.io"
[project.optional-dependencies]
bib = ["duecredit"]
rdkit = ["rdkit"]
networkx = ["networkx"]
parallel = ["pebble"]
test = [
"pytest",
"pytest-cov",
"pytest-benchmark",
"requests",
]
dev = [
"mypy",
"types-requests",
"flake8",
"black",
"isort",
"pre-commit",
]
[tool.flit.module]
name = "spyrmsd"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--strict-markers"
markers = [
"slow",
]
[tool.coverage.run]
source = ["spyrmsd"]
omit = [
"spyrmsd/_version.py",
"spyrmsd/due.py",
"*/tests/*",
]
[tool.coverage.report]
exclude_lines = [
"# Don't complain if tests don't hit defensive assertion code:",
"raise AssertionError",
"raise NotImplementedError",
"# Don't complain if non-runnable code isn't run:",
"if 0:",
"if __name__ == .__main__.:",
]
[tool.mypy]
files = ["spyrmsd", "tests"]
ignore_missing_imports = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88