-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.93 KB
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
70
71
72
73
74
75
76
[build-system]
requires = [
"setuptools==80.9.0",
"setuptools-scm[simple]==9.2.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "dishka"
dynamic = ["version"]
readme = "README.md"
authors = [
{ name = "Andrey Tikhonov", email = "17@itishka.org" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
description = "Cute DI framework with scopes and agreeable API"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
dependencies = [
"exceptiongroup>=1.1.3; python_version<'3.11'",
]
[dependency-groups]
typos = ["typos==1.44.0"]
zizmor = ["zizmor==1.22.0"]
ast-grep = ["ast-grep-cli==0.41.0"]
ci = [
"uv==0.10.7",
"ruff==0.15.4",
"mypy==1.19.1",
"nox==2026.2.9",
]
dev = [
{ include-group = "ci" },
{ include-group = "typos" },
{ include-group = "zizmor" },
{ include-group = "ast-grep" },
]
[project.urls]
"Source" = "https://github.com/reagento/dishka"
"Homepage" = "https://github.com/reagento/dishka"
"Documentation" = "https://dishka.readthedocs.io/en/stable/"
"Bug Tracker" = "https://github.com/reagento/dishka/issues"
[tool.setuptools_scm]
version_file = "src/dishka/_version.py"
version_file_template = """\
# This file auto generated!
# DO NOT EDIT MANUALLY!
version: str = "{version}"
__version__: str = "{version}"
commit_hash: str = "{scm_version.node}"
version_timestamp: str = "{scm_version.time}"
tag: str = "{scm_version.tag}"
branch: str = "{scm_version.branch}"
commit_date: str = "{scm_version.node_date}"
commit_count_since_tag: int = {scm_version.distance}
"""