Initial commit

Add the following files:
- LICENSE (MIT)
- README.md (empty)
- pyproject.toml (after poetry init)
This commit is contained in:
Alexander Hess 2019-09-15 12:20:18 +02:00
commit f0152355a3
3 changed files with 37 additions and 0 deletions

15
pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[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"