-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.36 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
[project]
name = "framex-kit"
version = "0.3.7"
description = "A lightweight plugin injection framework for Python."
readme = "README.md"
authors = [{ name = "touale", email = "touale@local.com" }]
requires-python = ">=3.11"
license = "MIT"
dependencies = [
"aiocache>=0.12.3",
"click>=8.1.8",
"fastapi>=0.115.13,<1.0",
"httpx>=0.28.1",
"loguru>=0.7.3",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pyjwt>=2.10.1",
"python-multipart>=0.0.22",
"pytz>=2025.2",
"sentry-sdk[fastapi]>=2.33.0",
"tomli>=2.2.1",
"uvicorn>=0.38.0",
]
[dependency-groups]
dev = [
"coverage>=7.9.2",
"mypy>=1.16.1",
"poethepoet>=0.36.0",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
"pytest-env>=1.1.5",
"pytest-order>=1.3.0",
"pytest-recording>=0.13.4",
"ruff==0.15.11",
"types-pytz>=2025.2.0.20250516",
"types-pyyaml>=6.0.12.20250516",
]
[project.scripts]
framex = "framex.cli:framex"
[project.optional-dependencies]
ray = ["ray[serve]==2.54.1"]
release = ["poethepoet>=0.36.0", "python-semantic-release>=10.2.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
default-groups = []
[[tool.uv.index]]
name = "custom-repo"
url = "https://pypi.org/simple"
publish-url = "https://upload.pypi.org/legacy/"
default = true
[tool.hatch.build.targets.wheel]
packages = ["src/framex"]