-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 808 Bytes
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
[project]
name = "llmprompt-nexus"
version = "0.2.1"
description = "A unified framework for interacting with various LLM providers through a consistent interface with batch processing, templating, and rate limiting."
authors = [
{name = "Ernesto Estevanell",email = "ernestoestevanellv@gmail.com"}
]
license = {text = "CC-BY-NC-4.0"}
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"aiohttp (==3.9.3)",
"pandas (==1.5.3)",
"numpy (==1.26.4)",
"tqdm (==4.66.2)",
"python-dotenv (==1.0.0)",
"pyyaml (==6.0.1)",
"httpx (>=0.28.1,<0.29.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
black = "^25.1.0"
mypy = "^1.15.0"