23 lines
483 B
TOML
23 lines
483 B
TOML
[tool.poetry]
|
|
name = "interview"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Paul Harrison"]
|
|
readme = "README.md"
|
|
packages = [{include = "interview", from = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.11,<3.12"
|
|
jupyter = "^1.0.0"
|
|
jupyter-collaboration = "^1.1.0"
|
|
jupyterlab = "^4.0.4"
|
|
pandas = "^2.0.3"
|
|
scikit-learn = "^1.3.0"
|
|
|
|
[tool.poetry.scripts]
|
|
make-data = "interview.data:make_data"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|