-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.13 KB
/
pyproject.toml
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
[tool.poetry]
name = "llmcall"
version = "0.1.0rc1"
description = "A lite abstraction layer for LLM calls"
authors = ["Ndamulelo Nemakhavhani <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
keywords = ["llm", "ai", "litellm", "structure-outputs", "openai", "pydantic"]
repository = "https://github.com/rihoneailabs/llmcall.git"
homepage = "https://github.com/rihoneailabs/llmcall"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = ">=3.11, <4.0"
pydantic = ">=2.0.0"
pydantic-settings = ">=2.0.0"
openai = "^1.58.1"
litellm = "^1.56.4"
environs = "^11.2.1"
tenacity = "^9.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
black = "^24.10.0"
isort = "^5.13.2"
mypy = "^1.14.0"
tox = "^4.23.2"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"