-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
39 lines (35 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
[build-system]
requires = ["setuptools>=66.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "dishka"
version = "0.1"
readme = "README.md"
authors = [
{ name = "Andrey Tikhonov", email = "[email protected]" },
]
license = { text = "Apache-2.0" }
description = "Minimal DI framework"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'exceptiongroup>=1.1.3; python_version<"3.11"',
]
[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"