File size: 877 Bytes
d9d7b41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
38
39
40
41
42
43
44
[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