intro-to-python/pyproject.toml
Alexander Hess d2fdda7c09 Add "develop" dependencies for the presenter
- the Jupyter notebooks are assumed to be run within an installation of
  the Anaconda Distribution (version 2019-07 with Python 3.7.3) by the
  students (assumed to be total beginners)
- for the presenter some special third-party libraries are added to
  allow for executable code cells in presentation mode (via rise)
- black / blackcellmagic provide a convenient way to style the code
  while working on the notebooks
2019-09-16 00:09:00 +02:00

20 lines
531 B
TOML

[tool.poetry]
name = "intro-to-python"
version = "0.1.0"
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.6"
jupyter = "^1.0"
[tool.poetry.dev-dependencies]
black = {version = "^18.3-alpha.0", allows-prereleases = true}
blackcellmagic = "^0.0.2"
jupyter-contrib-nbextensions = "^0.5"
rise = "^5.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"