-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1.07 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = "src/**/*.py"
ignore_errors = true
ignore_missing_imports = true
pretty = true
python_version = "3.11"
show_column_numbers = true
show_error_codes = true
show_error_context = true
[[tool.mypy.overrides]]
ignore_errors = false
module = "tmpl"
[tool.poetry]
authors = ["Harrison Totty <harrison+gh@totty.dev>"]
description = "A highly-configurable general-purpose templating program."
name = "tmpl"
readme = "README.md"
repository = "https://github.com/HarrisonTotty/tmpl"
version = "2.3.0"
[tool.poetry.dependencies]
python = "^3.11"
Jinja2 = "*"
PyYAML = "*"
[tool.poetry.dev-dependencies]
mypy = "*"
pytest = "*"
pytest-aio = "*"
pytest-cov = "*"
pytest-randomly = "*"
[tool.poetry.scripts]
tmpl = "tmpl:main"
[tool.pytest.ini_options]
addopts = "-v --cov=tmpl"
python_files = "*.py"
python_functions = "test_*"
testpaths = "tests"