Poetry update
This commit is contained in:
parent
8368652725
commit
1fb67edff9
|
@ -1,2 +1 @@
|
|||
poetry.lock
|
||||
.ipynb_checkpoints/*
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue