intro-to-python/pyproject.toml
Alexander Hess 759271b6a1 Update pyproject.toml, poetry.lock, requirements.txt
- use JupyterLab instead of just Jupyter
- update dependencies
2020-01-28 18:36:36 +01:00

20 lines
474 B
TOML

[tool.poetry]
name = "intro-to-python"
version = "0.6.1"
description = "An introduction to Python and programming for wanna-be data scientists"
authors = ["Alexander Hess <alexander@webartifex.biz>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
jupyterlab = "^1.2.6"
numpy = "^1.18.1"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
blackcellmagic = "^0.0.2"
RISE = "^5.6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"