-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1.39 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "driftlock"
version = "0.5.0"
description = "LLM cost governance and control layer — supports OpenAI, Anthropic, and more"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["openai", "anthropic", "llm", "cost", "policy", "governance", "middleware"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"openai>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/devdoxxx/driftlock"
Repository = "https://github.com/devdoxxx/driftlock"
"Bug Tracker" = "https://github.com/devdoxxx/driftlock/issues"
[project.optional-dependencies]
anthropic = ["anthropic>=0.30.0"]
langchain = ["langchain>=0.2.0"]
langgraph = ["langgraph>=0.2.0", "langchain-openai>=0.1.0"]
fastapi = ["fastapi>=0.110.0", "uvicorn[standard]>=0.29.0"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.14",
"httpx>=0.27",
"ruff>=0.4",
]
[project.scripts]
driftlock = "driftlock.cli:main"
[tool.setuptools.packages.find]
include = ["driftlock*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"