Speed / pyproject.toml
LesterCerioli's picture
Building Speed LLM
d9d7b41
Raw
History Blame Contribute Delete
877 Bytes
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "llm-sped-fiscal"
version = "0.1.0"
description = "Sistema LLM para gestão de obrigações fiscais brasileiras (SPED)"
requires-python = ">=3.12"
license = {text = "MIT"}
dependencies = [
"torch>=2.3.0",
"numpy>=1.26.0",
"pydantic>=2.7.0",
"httpx>=0.27.0",
"aiofiles>=23.2.1",
"python-dateutil>=2.9.0",
"cryptography>=42.0.0",
"lxml>=5.2.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"zeep>=4.2.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.mypy]
python_version = "3.12"
strict = true