-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
73 lines (64 loc) · 1.51 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastapi-apcore"
version = "0.4.0"
description = "FastAPI integration for apcore AI-Perceivable Core — exposes FastAPI routes as apcore modules with auto-discovery, schema extraction from Pydantic models, and OpenAPI-based scanning."
requires-python = ">=3.11"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "aiperceivable", email = "team@aiperceivable.com" },
]
keywords = [
"fastapi",
"apcore",
"mcp",
"llm",
"ai",
"tools",
"pydantic",
"schema",
"module",
"cli",
"auto-discovery",
"integration",
]
dependencies = [
"fastapi>=0.100",
"apcore>=0.15.1",
"apcore-toolkit>=0.4.1",
]
[project.optional-dependencies]
mcp = ["apcore-mcp>=0.12.0"]
cli = ["apcore-cli>=0.5.0", "click>=8.0"]
all = ["fastapi-apcore[mcp,cli]"]
dev = [
"apdev[dev]>=0.2.3",
"pytest>=7.0",
"pytest-asyncio>=0.21",
"httpx>=0.24",
"ruff>=0.1",
"mypy>=1.0",
"coverage>=7.0",
]
[project.scripts]
fastapi-apcore = "fastapi_apcore.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.apdev]
base_package = "fastapi_apcore"
[tool.ruff]
src = ["src"]
target-version = "py311"
line-length = 120
[tool.mypy]
python_version = "3.11"
strict = true
[project.urls]
Homepage = "https://github.com/aiperceivable/"
Repository = "https://github.com/aiperceivable/fastapi-apcore"