-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (64 loc) Β· 2.09 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
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
[tool.poetry]
name = "pest-py"
version = "0.4.4"
description = "π β pest βΊ fastapi + rodi + mvc | python library for building scalable modular API's. Inspired by NestJS."
authors = ["Lucas Colombo <[email protected]>"]
homepage = "https://pest.lucode.ar"
documentation = "https://pest.lucode.ar/docs"
repository = "https://github.com/lucas-labs/pest"
readme = "README.md"
license = "MIT"
keywords = ["pest", "nestjs", "nest", "api", "rest", "restful", "mvc", "web", "webapp", "di", "dependency injection", "rodi", "fastapi"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Framework :: Pydantic :: 1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
]
packages = [
{ include = "pest" }
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
dacite = "^1.8.1"
fastapi = ">=0.115.3, <0.116.0"
loguru = "^0.7.2"
pydantic = ">=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0"
typing-extensions = "^4.12.2"
dij = "0.0.3"
[tool.poetry.extras]
logs = ["loguru"]
[tool.poetry.group.dev.dependencies]
httpx = "^0.27.0"
pytest = "^8.3.2"
pytest-asyncio = "^0.24.0"
pytest-cov = "^5.0.0"
ruff = "^0.6.1"
uvicorn = "^0.31.0"
nox-poetry = "^1.0.3"
tomli = "^2.0.1"
python-multipart = ">=0.0.12,<0.0.19"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
skip-string-normalization = true
extend-exclude = ".patches/"