-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.2 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
[tool.poetry]
name = "wordsiv"
version = "0.2.4"
description = "Generate text with a limited character set for font proofing"
authors = ["Chris Pauley <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
regex = "^2024.11.6"
pytest = "^8.3.4"
[tool.poetry.group.dev.dependencies]
ipython = "^8.18.1"
snakeviz = "^2.1.0"
typeguard = "^4.4.1"
ruff = "^0.9.2"
pre-commit = "^4.0.1"
mkdocs = "^1.6.1"
mkdocstrings = "^0.27.0"
mkdocstrings-python = "^1.13.0"
mkdocs-material = "^9.5.49"
mypy = "^1.14.1"
types-regex = "^2024.11.6.20241221"
pytest-cov = "^6.0.0"
pytest = "^8.3.4"
[tool.poetry.group.ci.dependencies]
pytest-cov = "^6.0.0"
pre-commit = "^4.0.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocstrings = "^0.27.0"
mkdocstrings-python = "^1.13.0"
mkdocs-material = "^9.5.49"
[tool.poe.tasks]
test = "poetry run python -m pytest"
coverage = "poetry run pytest --cov-report term-missing --cov=wordsiv tests/ --ignore=tests/test_snippets.py"
docs = "poetry run mkdocs serve"
[tool.pytest.ini_options]
addopts = ["--maxfail=5"]
# typeguard-packages = ["wordsiv"]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"