-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
44 lines (39 loc) · 1.12 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
[tool.poetry]
name = "fastapi-injector"
version = "0"
description = "python-injector integration for FastAPI"
authors = ["Matyas Richter <matyas@mrichter.cz>"]
license = "BSD"
repository = "https://github.com/matyasrichter/fastapi-injector"
packages = [
{include = "fastapi_injector"},
]
include = ["fastapi_injector/py.typed"]
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Libraries",
"Framework :: FastAPI",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Typing :: Typed",
]
[tool.poetry-version-plugin]
source = "git-tag"
[tool.poetry.dependencies]
python = ">=3.8 <3.14"
fastapi = { version = ">=0.70.0", optional = true }
fastapi-slim = { version = ">=0.111.0", optional = true }
injector = ">=0.19.0"
[tool.poetry.group.dev.dependencies]
fastapi-slim = ">=0.111.0"
httpx = ">=0.25.1,<0.28.0"
pre-commit = "^3.5.0"
pytest = ">=7.4.3,<9.0.0"
pytest-asyncio = ">=0.21.1,<0.25.0"
pytest-cov = ">=4.1,<6.0"
[tool.poetry.extras]
standard = ["fastapi"]
slim = ["fastapi-slim"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"