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"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["Chris Proctor <chris@chrisproctor.net>"]
|
||||
authors = [
|
||||
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
|
||||
]
|
||||
license = {text = "MIT"}
|
||||
readme = "README.md"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
jupyter = "^1.0.0"
|
||||
seaborn = "^0.12.2"
|
||||
pandas = "^2.0.3"
|
||||
requires-python = ">=3.10,<4.0"
|
||||
dependencies = [
|
||||
"jupyter (>=1.1.1,<2.0.0)",
|
||||
"seaborn (>=0.13.2,<0.14.0)",
|
||||
"pandas (>=2.2.3,<3.0.0)"
|
||||
]
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
|
Loading…
Reference in New Issue