Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 824 Bytes

File metadata and controls

28 lines (18 loc) · 824 Bytes

New Python project [template]

This template is for new Python 3 projects. It features a basic structure, a simple logger, an arguments parser and the recommended settings + plugins for VS Code.

Screenshot\

Usage

Describe how to use your Python script.

Development

If you want to contribute see CONTRIBUTING.md. Recommended IDE: VS Code.

Virtual Environment

If you are using a virtual environment (python -m venv .env), add this to the end of the activate file (.env/Scripts/activate\[.bat\]):

pip install -r requirements.txt
pip install -r requirements-dev.txt

Testing

If you want to test the code, run pytest in the terminal or use the testing suite of your IDE.