-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (49 loc) · 1.6 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
[project]
name = "fastapi-di-kit"
version = "0.1.0"
description = "A simple, powerful dependency injection library for FastAPI supporting hexagonal architecture"
readme = "README.md"
authors = [
{ name = "Ton Llucia", email = "[email protected]" }
]
license = { text = "MIT" }
requires-python = ">=3.12"
keywords = ["fastapi", "dependency-injection", "di", "container", "hexagonal-architecture", "clean-architecture"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"fastapi>=0.104.0",
"typing-extensions>=4.8.0",
"uvicorn>=0.24.0",
]
[project.urls]
Homepage = "https://github.com/tonlls1999/fastapi-di-kit"
Documentation = "https://github.com/tonlls1999/fastapi-di-kit#readme"
Repository = "https://github.com/tonlls1999/fastapi-di-kit"
Issues = "https://github.com/tonlls1999/fastapi-di-kit/issues"
Changelog = "https://github.com/tonlls1999/fastapi-di-kit/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]