-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 1.29 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
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "provena"
version = "0.1.0"
description = "Provenance-cascade-correction for agent conclusions."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "supermario_leo" }]
keywords = ["provenance", "agents", "llm", "cascade", "invalidation", "dag"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.30",
"watchfiles>=1.0",
"typer>=0.12",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"httpx>=0.27",
]
[project.scripts]
provena = "provena.cli:main"
[project.urls]
Homepage = "https://github.com/SuperMarioYL/provena"
Issues = "https://github.com/SuperMarioYL/provena/issues"
[tool.hatch.build.targets.wheel]
packages = ["provena"]
[tool.hatch.build.targets.sdist]
include = ["provena", "tests", "README.md", "README.en.md", "LICENSE", "VERSION"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"