LesterCerioli/Speed
0
1[build-system]2requires = ["setuptools>=68", "wheel"]3build-backend = "setuptools.backends.legacy:build"4 5[project]6name = "llm-sped-fiscal"7version = "0.1.0"8description = "Sistema LLM para gestão de obrigações fiscais brasileiras (SPED)"9requires-python = ">=3.12"10license = {text = "MIT"}11dependencies = [12 "torch>=2.3.0",13 "numpy>=1.26.0",14 "pydantic>=2.7.0",15 "httpx>=0.27.0",16 "aiofiles>=23.2.1",17 "python-dateutil>=2.9.0",18 "cryptography>=42.0.0",19 "lxml>=5.2.0",20 "python-dotenv>=1.0.0",21 "requests>=2.31.0",22 "zeep>=4.2.1",23]24 25[project.optional-dependencies]26dev = [27 "pytest>=8.2.0",28 "pytest-asyncio>=0.23.0",29 "ruff>=0.4.0",30 "mypy>=1.10.0",31]32 33[tool.setuptools.packages.find]34where = ["."]35include = ["src*"]36 37[tool.ruff]38line-length = 10039target-version = "py312"40 41[tool.mypy]42python_version = "3.12"43strict = true44 