-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "stocks-analytics-zoomcamp-2025"
version = "0.2.0"
description = "Projeto educacional do Stock Market Analytics Zoomcamp 2025"
authors = [
{ name = "Nath", email = "your_email@example.com" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"pandas>=2.2.0",
"numpy>=1.26.0",
"matplotlib>=3.8.0",
"plotly>=5.19.0",
"seaborn>=0.13.0",
"yfinance>=0.2.36",
"ta>=0.11.0",
"scikit-learn>=1.5.0",
"statsmodels>=0.14.1",
"sqlalchemy>=2.0.29",
"python-dotenv>=1.0.1",
"typer>=0.9.0",
"pydantic>=2.6.0",
"quantstats>=0.0.62",
"joblib>=1.3.0",
"xgboost>=2.0.0", # Boosting (reg/cls)
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.4.0",
"black>=24.4.0",
"pre-commit>=3.6.0"
]
deep = [
"tensorflow>=2.17.0" # Para LSTM (opcional)
]
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.ruff]
line-length = 88
select = ["E", "F", "B", "C90"]
ignore = ["E501"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["src"]