Initial commit
Add the following files: - LICENSE (MIT) - README.md (empty) - pyproject.toml (after poetry init)
This commit is contained in:
commit
f0152355a3
3 changed files with 37 additions and 0 deletions
15
pyproject.toml
Normal file
15
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue