Use poetry's latest config style and options
This commit is contained in:
parent
f5fec203e1
commit
906dfa0345
1 changed files with 6 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["poetry-core"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "intro-to-data-science"
|
name = "intro-to-data-science"
|
||||||
version = "0.3.0.dev0"
|
version = "0.3.0.dev0"
|
||||||
|
@ -25,6 +26,9 @@ readme = "README.md"
|
||||||
homepage = "https://github.com/webartifex/intro-to-data-science"
|
homepage = "https://github.com/webartifex/intro-to-data-science"
|
||||||
repository = "https://github.com/webartifex/intro-to-data-science"
|
repository = "https://github.com/webartifex/intro-to-data-science"
|
||||||
|
|
||||||
|
package-mode = false
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.8"
|
python = "^3.8"
|
||||||
|
|
||||||
|
@ -34,4 +38,4 @@ numpy = "^1.21"
|
||||||
pandas = "^1.3"
|
pandas = "^1.3"
|
||||||
scikit-learn = "^1.0"
|
scikit-learn = "^1.0"
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
|
|
Loading…
Reference in a new issue