22 lines
413 B
TOML
22 lines
413 B
TOML
[project]
|
|
name = "lab-estimation"
|
|
version = "0.1.0"
|
|
description = "Estimation lab: fitting and interpreting linear regression models"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pandas>=2.0",
|
|
"numpy>=1.24",
|
|
"scikit-learn>=1.3",
|
|
"matplotlib>=3.7",
|
|
"seaborn>=0.12",
|
|
"jupyterlab>=4.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|