-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 781 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 781 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-learning-lab"
version = "0.1.0"
description = "Curated educational Python examples rebuilt from legacy scripts and coursework"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"matplotlib>=3.8",
]
[project.optional-dependencies]
finance = [
"yfinance>=0.2.40",
"seaborn>=0.13",
"scipy>=1.11",
]
timeseries = [
"statsmodels>=0.14",
"scikit-learn>=1.3",
]
streaming = [
"confluent-kafka>=2.5.0",
"nltk>=3.9",
"pyspark>=3.5",
]
volatility = [
"arch>=7.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]