commit 8a48ea8460b94ee3d9f50a3ffef3808763e1dfe6 Author: Lerking <33354709+Lerking@users.noreply.github.com> Date: Mon Feb 13 21:52:48 2023 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b6e4761 --- /dev/null +++ b/.gitignore @@ -0,0 +1,129 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..d4bd7fd --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Python repo template +[![GitHub forks](https://img.shields.io/github/forks/JLG-Skunkworks/python-repo-template.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/JLG-Skunkworks/python-repo-template/forks/) +[![GitHub stars](https://img.shields.io/github/stars/JLG-Skunkworks/python-repo-template.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/JLG-Skunkworks/python-repo-template/stargazers/) +[![GitHub watchers](https://img.shields.io/github/watchers/JLG-Skunkworks/python-repo-template.svg?style=social&label=Watch&maxAge=2592000)](https://GitHub.com/JLG-Skunkworks/python-repo-template/watchers/) + +[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/) + +[![GitHub version](https://badge.fury.io/gh/JLG-Skunkworks-python-repo-template.svg)](https://github.com/JLG-Skunkworks/python-repo-template) + +[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/JLG-Skunkworks/python-repo-template.github.io/graphs/commit-activity) +[![GitHub contributors](https://img.shields.io/github/contributors/JLG-Skunkworks/python-repo-template.svg)](https://GitHub.com/JLG-Skunkworks/python-repo-template/graphs/contributors/) + +[![Github file count](https://img.shields.io/github/directory-file-count/JLG-Skunkworks/python-repo-template)]() + +[![GitHub issues](https://img.shields.io/github/issues/JLG-Skunkworks/python-repo-template.svg)](https://GitHub.com/JLG-Skunkworks/python-repo-template/issues/) +[![GitHub issues-closed](https://img.shields.io/github/issues-closed/JLG-Skunkworks/python-repo-template.svg)](https://GitHub.com/JLG-Skunkworks/python-repo-template/issues?q=is%3Aissue+is%3Aclosed) +[![Percentage of issues still open](http://isitmaintained.com/badge/open/JLG-Skunkworks/python-repo-template.svg)](http://isitmaintained.com/project/JLG-Skunkworks/python-repo-template "Percentage of issues still open") +[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/JLG-Skunkworks/python-repo-template.svg)](http://isitmaintained.com/project/JLG-Skunkworks/python-repo-template "Average time to resolve an issue") + +[![GitHub pull-requests](https://img.shields.io/github/issues-pr/JLG-Skunkworks/python-repo-template.svg)](https://GitHub.com/JLG-Skunkworks/python-repo-template/pull) +[![GitHub total-pull-requests](https://badgen.net/github/prs/JLG-Skunkworks/python-repo-template)](https://GitHub.com/JLG-Skunkworks/python-repo-template/pull) + +Coding time for the last 30 days.
+[![wakatime](https://wakatime.com/badge/user/d43f2852-fd6f-45b4-b713-558ad18204d4/project/211ffb9c-81fc-4187-a834-aa7b107a2055.svg)](https://wakatime.com/badge/user/d43f2852-fd6f-45b4-b713-558ad18204d4/project/211ffb9c-81fc-4187-a834-aa7b107a2055) + +See the wiki for usage and examples. +[python-repo-template wiki page](https://github.com/JLG-Skunkworks/python-repo-template/wiki) diff --git a/main.py b/main.py new file mode 100644 index 0000000..2ae2839 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +pass