Description here...
TimeToGrow requires Python3.11. Note: This has not been tested on Python 3.12+.
Download the latest Python
Windows
In a terminal:
git clone https://github.com/TimeEnjoyed/TimeToGrow.git
cd TimeToGrow
py -3.11 -m venv venv
./venv/Scripts/activate
pip install -r requirements.txtLinux/MacOS
In a terminal:
git clone https://github.com/TimeEnjoyed/TimeToGrow.git
cd TimeToGrow
python3.11 -m venv venv
source venv/bin/activate
pip install -r requirements.txtAfter installation, in your activated venv:
python launcher.pyTo set up a development environment follow the steps in Installing, then run:
pip install -r dev-requirements.txtTimeToGrow uses Black and isort for linting.
After installation and before committing run:
black .
isort .