-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.25 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>=75.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "veilpiercer"
version = "0.2.1"
description = "Local-first AI agent observability for Ollama, LangChain, LangGraph & CrewAI"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "VeilPiercer", email = "support@veil-piercer.com"}]
keywords = ["llm", "observability", "ollama", "langchain", "agent-debugging", "local-first"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = []
[project.optional-dependencies]
langchain = ["langchain-core>=0.1.0"]
dev = ["pytest", "build", "twine"]
hosted = ["websockets>=12.0"]
[project.urls]
Homepage = "https://veil-piercer.com"
Documentation = "https://veil-piercer.com/docs"
[project.scripts]
veilpiercer = "veilpiercer.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["veilpiercer*"]
exclude = ["src*", "tests*"]
[tool.setuptools.package-data]
veilpiercer = ["static/*.html"]