-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.34 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
[tool.poetry]
name = "clipstick"
version = "0.6.1"
description = "A pydantic cli creation tool based on Pydantic models."
license = "MIT"
authors = ["Sander Teunissen <[email protected]>"]
readme = "README.md"
repository = "https://github.com/sander76/clipstick"
documentation = "https://sander76.github.io/clipstick/index.html"
keywords = [
"pydantic cli",
"pydantic",
"cli",
"command line interface",
"argparse",
'click',
'typer',
]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.3.0"
rich = "^13.6.0"
[tool.poetry.group.dev.dependencies]
mypy = ">=1.5.1"
pytest = ">=7.4.2"
ruff = ">=0.0.291"
nox = ">=2023.4.22"
black = ">=23.9.1"
cogapp = ">=3.3.0"
coverage = "^7.3.2"
cairosvg = "^2.7.1"
icdiff = "^2.0.7"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-autobuild = "^2021.3.14"
sphinx-autodoc-typehints = "^1.25.2"
furo = "^2023.9.10"
myst-parser = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
ignore = [
'E501', # line-length. Black handles this.
]
select = [
'F', # pyflakes
'I', # isort
"D", # pydocstyle,
"E", # Pycodestyle]
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.extend-per-file-ignores]
"tests/*" =["D"]
"docs/*"=["D"]
"examples/*"=["D100"]
[tool.coverage.report]
fail_under = 96