-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.42 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-decision-tracer"
version = "0.2.0"
description = "Zero-dependency local AI agent decision tracer. Records every step an AI agent takes — what it saw, what it decided, why."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "LuciferForge" }]
keywords = ["ai", "agents", "tracing", "observability", "llm", "debugging"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.8"
dependencies = []
[project.optional-dependencies]
signed = ["cryptography>=41"]
dev = ["pytest>=7", "cryptography>=41"]
[project.scripts]
ai-trace = "ai_trace.cli:main"
[project.urls]
Homepage = "https://github.com/LuciferForge/ai-trace"
Repository = "https://github.com/LuciferForge/ai-trace"
Issues = "https://github.com/LuciferForge/ai-trace/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["ai_trace*"]