This is a sample Python project meant to demonstrate how to use Python projects with GitHub and VSCode. It contains a complete Python project development setup with the following features:
.python-version
file to specify the Python version;requirements.in
file to specify the Python package dependencies;- And a generated
requirements.txt
, readSETUP.md
for more info;
- And a generated
SETUP.md
file to document the project required dependencies and setup;.gitignore
file to exclude commom files and directories from a python repository;.code-workspace
file to configure the VSCode workspace settings, with some recommended settings and extensions;src/
directory to store the Python source code;