Poetry update

This commit is contained in:
Chris Proctor 2025-01-13 21:55:03 -05:00
parent 3298abae4a
commit f98d625308
2 changed files with 1790 additions and 1305 deletions

3074
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,17 +1,20 @@
[tool.poetry] [project]
name = "project-argument" name = "project-argument"
version = "0.1.0" version = "0.1.0"
description = "" description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"] authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md" readme = "README.md"
requires-python = ">=3.10,<4.0"
[tool.poetry.dependencies] dependencies = [
python = "^3.10" "jupyter (>=1.1.1,<2.0.0)",
jupyter = "^1.0.0" "seaborn (>=0.13.2,<0.14.0)",
seaborn = "^0.12.2" "pandas (>=2.2.3,<3.0.0)"
pandas = "^2.0.3" ]
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"