Python package to be used for creating QR codes from given data
1. Install Python check version by running the command
python3 --versionThe version should be compatible with the version listed in pyproject.toml
2. Install Poetry by following the installation instructions in the documentation. Then check the version by running the command
poetry --versionThe version should be compatible with the version listed in pyproject.toml
3. Use git clone to get latest copy of source code
git clone https://github.com/Phoenix-Programming/QR-Code-Generator.git
cd QR-Code-Generatorpoetry installTesting is being handled using the pytest library. When adding tests to the tests directory make sure function names start with test_*, or they will not be run. To run all tests use the command
poetry run pytest