-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.84 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
69
[tool.poetry]
name = "project_name" # TODO
description = "Template for python project" # TODO
version = "1.0.0"
license = "MIT"
authors = ["Paul-B98 <[email protected]>"] # TODO
readme = "README.md"
homepage = "https://github.com/Paul-B98/python-project-template" # TODO
repository = "https://github.com/Paul-B98/python-project-template" # TODO
documentation = "https://github.com/Paul-B98/python-project-template" # TODO
keywords = [""] # TODO
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
Changelog = "https://github.com/Paul-B98/python-project-template" # TODO
Bugtracker = "https://github.com/Paul-B98/python-project-template" # TODO
[tool.poetry.dependencies]
python = "^3.13"
[tool.poetry.group.dev.dependencies]
mypy = "^1.14.1"
pytest = "^8.0.2"
coverage = "^7.6.10"
pytest-cov = "^6.0.0"
ruff = "^0.9.4"
pytest-asyncio = "^0.25.3"
pytest-recording = "^0.13.1"
pytest-random-order = "^1.1.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.6.2"
pymdown-extensions = "^10.14.3"
mkdocstrings-python = "^1.13.0"
mkdocs-macros-plugin = "^1.3.7"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-section-index = "^0.3.9"
mkdocs-jupyter = "^0.25.1"
jupyter = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
strict_optional = true
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_test.py"]
filterwarnings = ["ignore::DeprecationWarning"]
asyncio_mode = "auto"
addopts = [
"--cov",
"--cov-branch",
"--cov=src",
"--cov-report=xml",
"--import-mode=importlib",
"--random-order",
]