-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.11 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "garch-lab"
version = "0.1.0"
description = "Weekend study: stylized facts of equity returns and GARCH(1,1) volatility forecasting, evaluated honestly out of sample."
readme = "README.md"
authors = [{ name = "Gabriel Ybarra Marcaida", email = "gabriybarra@gmail.com" }]
license = "MIT"
requires-python = ">=3.14"
dependencies = [
"numpy",
"pandas",
"plotly>=5.24",
"kaleido", # static PNG/SVG export for the README figures (fig.write_image)
"scipy",
"statsmodels",
"arch>=7.2",
"yfinance>=0.2.51",
]
# Set up for development with: uv sync
# uv.lock is the committed, pinned snapshot of the exact environment that
# produced the results — uv maintains it automatically on every `uv sync`
# / `uv run`, so there is no separate `pip freeze` step. Commit uv.lock.
[dependency-groups]
dev = [
"pytest",
"jupyterlab",
]
[project.urls]
Repository = "https://github.com/Gabri110/volatility-lab"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]