intro-to-python/pyproject.toml
Alexander Hess f0152355a3 Initial commit
Add the following files:
- LICENSE (MIT)
- README.md (empty)
- pyproject.toml (after poetry init)
2019-09-15 12:20:18 +02:00

15 lines
373 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"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"