-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.04 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
[tool.poetry]
name = "arguably"
version = "1.3.0"
description = "The best Python CLI library, arguably."
authors = ["treykeown <[email protected]>"]
readme = "etc/pypi/PYPI_README.md"
homepage = "https://treykeown.github.io/arguably/"
repository = "https://github.com/treykeown/arguably"
[tool.poetry.dependencies]
python = "^3.9"
docstring-parser = "^0.16"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
mypy = "^1.3.0"
ruff = "^0.4.4"
pre-commit = "^3.7.0"
pytest = "^8.2.0"
pytest-cov = "^5.0.0"
pytest-randomly = "^3.12.0"
nox = "^2024.4.15"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.3"
mkdocstrings = {extras = ["python"], version = "^0.25.1"}
mkdocs-material = "^9.1.15"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
exclude = ["etc/"]
[tool.mypy]
disallow_untyped_defs = true
warn_unused_ignores = true
warn_redundant_casts = true
exclude = "^etc/"
[tool.black]
line-length = 120
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]