Poetry update

This commit is contained in:
Chris Proctor 2025-01-13 21:51:41 -05:00
parent 8368652725
commit 1fb67edff9
3 changed files with 3087 additions and 13 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
poetry.lock
.ipynb_checkpoints/*

3071
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,22 @@
[tool.poetry]
name = "lab_pokemon"
[project]
name = "lab-pokemon"
version = "0.1.0"
description = ""
authors = ["Chris <chris@chrisproctor.net>"]
license = "MIT"
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"jupyter (>=1.1.1,<2.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"matplotlib (>=3.10.0,<4.0.0)",
"seaborn (>=0.13.2,<0.14.0)",
"requests (>=2.32.3,<3.0.0)"
]
[tool.poetry.dependencies]
python = "^3.10"
jupyterlab = "^3.3.3"
pandas = "^1.4.2"
matplotlib = "^3.5.1"
seaborn = "^0.11.2"
requests = "^2.27.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"