-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.19 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "moldoc"
maintainers = [
{ name = "Lukas Turcani", email = "[email protected]" },
]
dependencies = [
"sphinx",
]
requires-python = ">=3.12"
dynamic = ["version"]
readme = "README.rst"
description = "Make better chemistry documentation!"
[dependency-groups]
dev = [
"ruff",
"mypy",
"build",
"twine",
"types-docutils",
"furo",
]
[project.urls]
github = "https://github.com/lukasturcani/moldoc"
[tool.setuptools_scm]
fallback_version = "0.0.0"
write_to = "src/moldoc/version.py"
[tool.ruff]
line-length = 79
exclude = ["src/moldoc/version.py"]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["ANN101", "ANN401", "COM812", "ISC001"]
[tool.ruff.lint.per-file-ignores]
"tests/source/conf.py" = ["D100", "INP001"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
show_error_codes = true
implicit_optional = false
warn_no_return = true
strict_optional = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = []
ignore_missing_imports = true