-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1 KB
/
pyproject.toml
File metadata and controls
44 lines (42 loc) · 1 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
[project]
name = "python4ds"
version = "1.0.5"
description = "The online book that teaches you how to use Python for data science."
readme = "README.md"
requires-python = ">=3.12.0,<3.13"
dependencies = [
"beautifulsoup4>=4.12.3",
"graphviz>=0.20.3",
"ibis-framework[sqlite]>=9.5.0",
"ipykernel>=6.29.5",
"jupyter>=1.1.1",
"jupyterlab>=4.3.4",
"lets-plot==4.5.2",
"nbclient>=0.10.2",
"nbformat>=5.0",
"nbstripout>=0.8.1",
"numpy>=2.2.1",
"openpyxl>=3.1.5",
"palmerpenguins>=0.1.4",
"pandas>=2.2.3",
"pandas-datareader>=0.10.0",
"pandas-profiling>=3.2.0",
"pandasdmx>=1.10.0",
"pip>=24.3.1",
"polars>=1.19.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pyyaml>=6.0.2",
"rich>=13.9.4",
"scipy>=1.15.0",
"skimpy>=0.0.17",
"sqlalchemy>=1.4.39",
"sqlmodel>=0.0.22",
"statsmodels>=0.14.4",
"toml>=0.10.2",
"watermark>=2.5.0",
"wbgapi>=1.0.14",
"yfinance>=1.2.1",
]
[tool.ruff.lint]
ignore = ["F405", "F403"]