intro-to-python/pyproject.toml

27 lines
518 B
TOML
Raw Normal View History

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "intro-to-python"
version = "0.1.0"
package-mode = false
authors = ["Alexander Hess <alexander@webartifex.biz>"]
description = "An intro to Python & programming for wanna-be data scientists"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
jupyterlab = "^4.1.0"
numpy = "^1.26.0"
2020-09-30 16:21:56 +02:00
[tool.poetry.dev-dependencies]
2020-10-02 15:18:40 +02:00
# Task runners
nox = "^2024.3.2"
pre-commit = "^3.7.0"
# Testing
xdoctest = "^1.1.0"