-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "czero-engine-python"
version = "0.1.0"
description = "Official Python SDK and workflows for CZero Engine API"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "CZero Engine Team", email = "info@czero.cc"},
]
keywords = ["czero", "czero-engine", "rag", "llm", "vector-search", "document-processing", "ai", "workflow"]
dependencies = [
# Core dependencies
"httpx>=0.27.0", # Modern async HTTP client
"pydantic>=2.9.0", # Data validation and models
"python-dotenv>=1.0.0", # Environment management
"rich>=13.9.0", # Beautiful terminal output
"typer>=0.12.0", # Modern CLI framework
# Utilities
"pathlib>=1.0.1",
"asyncio>=3.4.3",
]
[project.optional-dependencies]
dev = [
"black>=24.10.0",
"ruff>=0.7.0",
"mypy>=1.13.0",
"ipython>=8.29.0",
]
langgraph = [
"langgraph>=0.6.4",
"langchain>=0.3.27",
"langchain-core>=0.3.74",
]
[project.scripts]
czero = "czero_engine.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/czero_engine"]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "B", "C90", "D"]
ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107"]
[tool.black]
line-length = 100
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true