-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (81 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
86 lines (81 loc) · 2.12 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "batchling"
version = "0.1.0a2"
description = "Save 50% off GenAI costs in two lines of code"
authors = [{ name = "Raphael Vienne", email = "raphaelvienne.work@gmail.com" }]
readme = "README.md"
requires-python = ">=3.11,<4.0"
keywords = [
"batch",
"batch-processing",
"request-batching",
"llm",
"generative-ai",
"ai-inference",
"asyncio",
"openai",
"anthropic",
"gemini",
"mistral",
"togetherai",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"aiohttp>=3.13.3",
"httpx>=0.28.1",
"rich>=14.2.0",
"typer>=0.20.0",
]
[project.scripts]
batchling = "batchling.cli.main:app"
[project.urls]
Documentation = "https://batchling.pages.dev/"
Source = "https://github.com/vienneraphael/batchling"
Issues = "https://github.com/vienneraphael/batchling/issues"
Changelog = "https://github.com/vienneraphael/batchling/releases"
[dependency-groups]
dev = [
"anthropic>=0.79.0",
"complexipy>=5.2.0",
"coverage>=7.11.0",
"dspy>=3.1.3",
"google-genai>=1.63.0",
"groq>=1.0.0",
"instructor>=1.14.5",
"ipykernel>=7.0.1",
"langchain>=1.2.10",
"langchain-openai>=1.1.10",
"litellm<=1.82.6",
"mistralai>=1.12.2",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.3",
"openai>=2.17.0",
"prek>=0.2.10",
"pydantic>=2.12.3",
"pydantic-ai>=1.60.0",
"pyinstrument>=5.1.1",
"pytest>=8.4.2",
"pytest-asyncio",
"python-dotenv>=1.1.1",
"respx>=0.22.0",
"ruff>=0.14.2",
"skylos>=3.2.3",
"together>=2.1.1",
"xai-sdk>=1.7.0",
]
[build-system]
requires = ["uv_build>=0.7.20,<0.8.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
packages = ["src/batchling"]