-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 897 Bytes
/
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
[tool.poetry]
name = "limeprompt"
version = "0.2.3"
description = "Light weight prompting and parsing library for LLM models"
authors = ["Abbas J <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/iam-abbas/limeprompt"
repository = "https://github.com/iam-abbas/limeprompt"
keywords = ["llm", "prompt", "ai", "openai", "anthropic"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "limeprompt" },
]
[tool.poetry.dependencies]
python = "^3.9"
anthropic = "^0.34.2"
pydantic = "^2.9.2"
openai = "^1.50.2"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
isort = "^5.13.2"
pylint = "^3.3.1"
pytest = "^8.3.3"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"