-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) Β· 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (71 loc) Β· 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "pest-py"
version = "0.5.5"
description = "π β pest βΊ fastapi + rodi + mvc | python library for building scalable modular API's. Inspired by NestJS."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Lucas Colombo", email = "lucas@lucode.dev" }
]
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",
]
requires-python = ">=3.11,<4.0"
dependencies = [
"dacite>=1.9.2",
"fastapi>=0.121.0, <0.122.0",
"pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0",
"typing-extensions>=4.8.0",
"dij>=0.0.4,<0.1.0",
]
[project.optional-dependencies]
logs = ["loguru>=0.7.0,<0.8.0"]
cron = ["croniter>=6.0.0,<7.0.0"]
[project.urls]
homepage = "https://pest.lucode.dev"
documentation = "https://pest.lucode.dev/docs"
repository = "https://github.com/lucas-labs/pest"
"Bug Tracker" = "https://github.com/lucas-labs/pest/issues"
[tool.poetry]
packages = [
{ include = "pest" }
]
[tool.poetry.group.dev.dependencies]
httpx = "^0.28.0"
pytest = "^9.0.1"
pytest-asyncio = "^1.3.0"
pytest-cov = "^7.0.0"
uvicorn = "^0.38.0"
nox-poetry = "^1.2.0"
tomli = "^2.3.0"
python-multipart = ">=0.0.20"
ruff = "^0.14.6"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope="function"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"