-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 1.49 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "apiforgepy"
version = "3.0.0"
description = "API observability & intelligence for FastAPI/Starlette — local-first, privacy-first"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "APIForge" }]
keywords = ["api", "observability", "monitoring", "fastapi", "starlette", "metrics", "performance", "middleware", "local-first"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: System :: Monitoring",
]
requires-python = ">=3.11"
dependencies = [
"starlette>=0.27",
]
[project.optional-dependencies]
dev = [
"fastapi>=0.110",
"httpx>=0.27",
"pytest>=8",
"pytest-asyncio>=0.23",
"uvicorn>=0.29",
]
[project.urls]
Homepage = "https://apiforge-organisation.github.io/docs/"
Repository = "https://github.com/APIForge-Organisation/sdk-python"
Documentation = "https://apiforge-organisation.github.io/docs/"
Changelog = "https://github.com/APIForge-Organisation/sdk-python/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["apiforgepy*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"