/tinybundle-virtualenv-ruff

A less barebones version of the tinybundle template

Primary LanguagePythonMIT LicenseMIT

Setup

  1. Install Taskfile for your operating system

  2. Make sure the Python version you are going to use for the virtualenv is installed on the system and added to path (this project has been tested on python 3.11.x)

  3. Install virtualenv

Firstly you need to create the virtual environment:

virtualenv venv

Next you need to activate it (first is for windows second is for unix based):

.\venv\Scripts\activate
source venv/bin/activate

Then all you need to do is navigate to the project directory and run:

task setup

Running the project

To run the project you can run (make sure the virtual env has been activated):

task run

If you only want to build the project use:

task build