2020-09-30 16:00:05 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
name = "intro-to-python"
|
|
|
|
version = "0.1.0.dev0"
|
|
|
|
|
|
|
|
authors = ["Alexander Hess <alexander@webartifex.biz>"]
|
|
|
|
description = "An intro to Python & programming for wanna-be data scientists"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
|
|
|
|
2020-09-30 16:21:56 +02:00
|
|
|
jupyterlab = "^2.2.8"
|
2020-10-13 23:39:22 +02:00
|
|
|
numpy = "^1.19.2"
|
2020-09-30 16:21:56 +02:00
|
|
|
|
2020-09-30 16:00:05 +02:00
|
|
|
[tool.poetry.dev-dependencies]
|
2020-10-02 15:18:40 +02:00
|
|
|
# Task runners
|
|
|
|
nox = "^2020.8.22"
|
2020-10-02 16:19:54 +02:00
|
|
|
pre-commit = "^2.7.1"
|
2020-10-12 22:49:53 +02:00
|
|
|
|
2020-10-27 17:07:07 +01:00
|
|
|
# Testing
|
|
|
|
xdoctest = "^0.15.0"
|
|
|
|
|
2020-10-12 22:49:53 +02:00
|
|
|
# Live coding during presentation mode
|
|
|
|
jupyter-contrib-nbextensions = "^0.5.1"
|
|
|
|
rise = "^5.6.1"
|