commit 057a9229d517de381647630009e8d893d5b38d99 Author: Alexander Hess Date: Wed Sep 30 16:00:05 2020 +0200 Initial commit - add the following files: + LICENSE.txt => use MIT license as the project should be accessible to anybody who wants to learn Python + README.md => provide a rough description of the project + pyproject.toml => initialize poetry and the add project metadata + poetry.lock => initialize poetry + .gitignore => hide pyenv and poetry artifacts + static/link/ => folder holding images for links - for the pre-2020 version of the files, check out the "v0.0.0" tag diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..35008af --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.python-version +.venv/ diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..0ec444a --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018-2020 Alexander Hess [alexander@webartifex.biz] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4d95cf0 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# An Introduction to Python and Programming + +This project is a thorough introductory course +in programming with **[Python ](https://www.python.org/)**. + +The **main goal** is to **prepare** students +for **further studies** in the "field" of **data science**. diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..b9e1c09 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,8 @@ +package = [] + +[metadata] +content-hash = "fafb334cb038533f851c23d0b63254223abf72ce4f02987e7064b0c95566699a" +lock-version = "1.0" +python-versions = "^3.8" + +[metadata.files] diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6f05059 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[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 "] +description = "An intro to Python & programming for wanna-be data scientists" +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.8" + +[tool.poetry.dev-dependencies] diff --git a/static/link/README.md b/static/link/README.md new file mode 100644 index 0000000..f5c9136 --- /dev/null +++ b/static/link/README.md @@ -0,0 +1,2 @@ +This folder contains small images +that are used to enhance the links in the notebooks and markdown files. diff --git a/static/link/to_py.png b/static/link/to_py.png new file mode 100644 index 0000000..53c6045 Binary files /dev/null and b/static/link/to_py.png differ