Set up a brand new pyproject.toml file
This commit is contained in:
parent
060d7de2c0
commit
3bdc0f76e7
2 changed files with 23 additions and 1417 deletions
1409
poetry.lock
generated
1409
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,20 +1,27 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry>=0.12"]
|
requires = ["poetry-core>=1.0.0"]
|
||||||
build-backend = "poetry.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "workshop-machine-learning-for-beginners"
|
name = "intro-to-data-science"
|
||||||
version = "0.1.0"
|
version = "0.1.0.dev0"
|
||||||
|
|
||||||
authors = ["Alexander Hess <alexander@webartifex.biz>"]
|
authors = [
|
||||||
description = "An introductory workshop on machine learning"
|
"Alexander Hess <alexander@webartifex.biz>",
|
||||||
|
]
|
||||||
|
description = "An intro to data science for absolute beginners"
|
||||||
|
keywords = [
|
||||||
|
"python",
|
||||||
|
"data-science",
|
||||||
|
"machine-learning",
|
||||||
|
"matplotlib",
|
||||||
|
"numpy",
|
||||||
|
"seaborn",
|
||||||
|
"sklearn",
|
||||||
|
]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.7"
|
python = "^3.8"
|
||||||
|
|
||||||
jupyterlab = "^2.2.8"
|
[tool.poetry.dev-dependencies]
|
||||||
matplotlib = "^3.3.2"
|
|
||||||
numpy = "^1.19.2"
|
|
||||||
pandas = "^1.1.2"
|
|
||||||
scikit-learn = "^0.23.2"
|
|
||||||
|
|
Loading…
Reference in a new issue