50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "llm-rag-ds-optimizer"
|
|
version = "0.1.0"
|
|
description = "Production-grade LLM optimizer for throughput, latency, and memory optimization"
|
|
authors = ["Carlos Gutierrez <cgutierrez44833@ucumberlands.edu>"]
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
packages = [{include = "llmds"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
numpy = "^1.24.0"
|
|
mmh3 = "^4.0.0"
|
|
psutil = "^5.9.0"
|
|
scipy = "^1.11.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = "^0.1.0"
|
|
mypy = "^1.7.0"
|
|
python-docx = "^1.1.0"
|
|
matplotlib = "^3.8.0"
|
|
pandas = "^2.1.0"
|
|
python-pptx = "^0.6.21"
|
|
datasets = {version = "^2.16.0", optional = true}
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W", "UP"]
|
|
ignore = []
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
check_untyped_defs = true
|
|
no_implicit_optional = true
|
|
warn_redundant_casts = true
|
|
warn_unused_ignores = true
|
|
|
|
|