intro-to-python/pyproject.toml

21 lines
427 B
TOML
Raw Normal View History

[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"
[tool.poetry.dev-dependencies]
2020-10-02 15:18:40 +02:00
# Task runners
nox = "^2020.8.22"