Poetry update
This commit is contained in:
parent
3298abae4a
commit
f98d625308
File diff suppressed because it is too large
Load Diff
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue