-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (20 loc) · 778 Bytes
/
Copy pathpyproject.toml
File metadata and controls
24 lines (20 loc) · 778 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "logistics-extraction-llm"
version = "0.1.0"
description = "Auditable invoice extraction with LoRA training, evaluation, and API serving."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "Shivam Kumar"}]
dependencies = ["fastapi>=0.115,<1", "pydantic>=2.8,<3", "uvicorn[standard]>=0.30,<1", "PyYAML>=6,<7"]
[project.optional-dependencies]
dev = ["httpx>=0.27,<1", "pytest>=8,<10"]
training = ["datasets>=3,<4", "peft>=0.13,<1", "torch>=2.4,<3", "transformers>=4.45,<5", "trl>=0.11,<1"]
[project.scripts]
logistics-extraction = "logistics_extraction.cli:main"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]