-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (46 loc) · 1.06 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
[project]
name = "zolks"
version = "0.3.0"
description = "Cost observability for AI agents"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Vikraman Senthil Kumar" }]
dependencies = [
"click>=8.1",
"rich>=13.7",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.30"]
proxy = [
"starlette>=0.37",
"uvicorn[standard]>=0.29",
"httpx>=0.27",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
"mypy>=1.10",
"anthropic==0.51.0",
"starlette>=0.37",
"uvicorn[standard]>=0.29",
"httpx>=0.27",
]
[project.urls]
Homepage = "https://zolks.vercel.app"
Repository = "https://github.com/vikramansen/zolks-python"
Issues = "https://github.com/vikramansen/zolks-python/issues"
[project.scripts]
zolks = "zolks.cli.main:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/zolks"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]