-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 898 Bytes
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"rewire" = ["py.typed"]
[project]
name = "rewire"
version = "0.11.0"
description = "A Streamlined Type-Based Dependency Injection Framework"
readme = "README.md"
authors = [{ name = "Ivan Vozhakov", email = "gou177@bk.ru" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["dependency injection", "configuration managment"]
dependencies = [
"pydantic >= 2.0.0",
"anyio >= 4.0.0",
"PyYAML >= 6.0.1",
"loguru <= 1.0.0",
]
requires-python = ">=3.12"
[project.optional-dependencies]
dev = ["black", "pytest", "trio", "pytest-anyio", "graphviz"]
[project.urls]
Homepage = "https://github.com/rewirepy/rewire"