-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (41 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
43 lines (41 loc) · 1.07 KB
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
[tool.poetry]
name = "tecsys-backend"
version = "0.1.0"
description = "API para classificação NCM de componentes eletrônicos"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [{include = "app", from = "."}]
[tool.poetry.dependencies]
python = ">=3.9"
fastapi = ">=0.116.1,<0.117.0"
uvicorn = ">=0.35.0,<0.36.0"
sqlmodel = ">=0.0.24,<0.0.25"
pydantic = ">=2.11.7,<3.0.0"
python-dotenv = ">=1.1.1,<2.0.0"
alembic = ">=1.16.5,<2.0.0"
pydantic-settings = ">=2.10.1,<3.0.0"
sqlalchemy = ">=2.0.43,<3.0.0"
asyncpg = ">=0.30.0,<0.31.0"
greenlet = ">=3.2.4,<4.0.0"
pandas = ">=2.3.2,<3.0.0"
requests = ">=2.32.5,<3.0.0"
ollama = ">=0.5.3,<0.6.0"
chromadb = ">=1.0.21,<2.0.0"
openpyxl = ">=3.1.5,<4.0.0"
pypdf2 = "^3.0.1"
python-multipart = "^0.0.20"
playwright = "^1.55.0"
beautifulsoup4 = "^4.14.2"
lxml = "^6.0.2"
psycopg2-binary = "^2.9.11"
aiohttp = "^3.13.1"
pytest = "^8.4.2"
aiosqlite = "^0.21.0"
pytest-asyncio = "^1.2.0"
onnxruntime = "1.18.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
[dependency-groups]
dev = [
"pytest-asyncio (>=1.2.0,<2.0.0)"
]