-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "ai-data-analyst" # Substitua pelo nome real do seu projeto
version = "0.1.0" # Pode ajustar a versão inicial conforme necessário
description = "Descrição do seu projeto" # Adicione uma breve descrição
authors = ["O Seu Nome <o.seu.email@exemplo.com>"] # Substitua pelos seus dados
readme = "README.md" # Ou o nome do seu ficheiro README
package-mode = false
[tool.poetry.dependencies]
python = "~3.12" # Com base na versão do Python do seu projeto (3.12.8)
streamlit = "^1.45.1"
google-genai = "^1.19.0"
python-dotenv = "^1.1.0"
google-adk = "^1.5.0"
pandas = "^2.3.0"
numpy = "^2.3.0"
matplotlib = "^3.10.3"
asyncio = ">=3.4.3"
charset-normalizer = "^3.4.2"
psycopg2-binary = "^2.9.10"
altair = "^5.5.0"
openpyxl = "^3.1.5"
cryptography = "^45.0.4"
[tool.poetry.group.dev.dependencies]
ruff = "^0.11.13"
mypy = "^1.16.0"
watchdog = "^6.0.0"
google-adk = {extras = ["eval"], version = "^1.5.0"}
pytest-asyncio = "^1.0.0"
freezegun = "^1.5.2"
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
docstring-code-line-length = "dynamic"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"