-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (52 loc) · 1.58 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
[tool.poetry]
name = "hotmodern-python"
version = "0.1.2"
description = "Python learning project by blog posts series 'Hypermodern Python' (by Claudio Jolowicz)"
authors = ["Artem Hotenov <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/hotenov/hotmodern-python"
repository = "https://github.com/hotenov/hotmodern-python"
keywords = ["hypermodern"]
documentation = "https://hotmodern-python.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
requests = "^2.32.3"
desert = "^2022.9.22"
marshmallow = "^3.10.0"
[tool.poetry.group.dev.dependencies]
[tool.poetry.group.docs.dependencies]
Sphinx = "^8.0.2"
sphinx-autodoc-typehints = "^2.2.3"
[tool.poetry.group.format.dependencies]
black = "^24.4.2"
[tool.poetry.group.test.dependencies]
codecov = "^2.1.13"
coverage = {extras = ["toml"], version = "^7.6.0"}
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
safety = "^3.2.4"
xdoctest = "^1.1.6"
[tool.poetry.group.lint.dependencies]
darglint = "^1.8.1"
flake8 = "^7.1.0"
flake8-annotations = "^3.1.1"
flake8-black = "^0.3.6"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^24.4.26"
flake8-docstrings = "^1.7.0"
flake8-import-order = "^0.18.2"
mypy = "^1.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hotmodern-python = "hotmodern_python.console:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["hotmodern_python"]
[tool.coverage.report]
show_missing = true