-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
37 lines (32 loc) · 863 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 = "batchwizard"
version = "0.2.0"
description = "BatchWizard: Manage OpenAI batch processing jobs with ease"
authors = ["Carl Kugblenu"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cmakafui/batchwizard"
repository = "https://github.com/cmakafui/batchwizard"
keywords = ["openai", "batch", "cli", "async"]
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.12.3"
rich = "^13.7.1"
openai = "^1.37.0"
pydantic = "^2.8.2"
aiofiles = "^24.1.0"
loguru = "^0.7.2"
pydantic-settings = "^2.3.4"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-asyncio = "^0.23.8"
isort = "^5.13.2"
black = "^24.4.2"
ruff = "^0.5.5"
pytest-mock = "^3.14.0"
[tool.poetry.scripts]
batchwizard = "batchwizard.cli:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"