Application to help you track important dates and milestones.
-
Install Python
Ensure Python is installed on your system. You can download it from python.org. -
Set Up a Virtual Environment
Create a virtual environment with the command:python -m venv .venv
-
Activate the Virtual Environment
On Windows, activate the virtual environment with:.venv\Scripts\activate
On Unix or MacOS, use:
source .venv/bin/activate
-
Update Pip
Upgrade pip to the latest version:python -m pip install --upgrade pip
-
Install Requirements
Install the necessary dependencies:pip install -r requirements.txt
-
Run the Application
Start the application with:
python src/main.py
To update requirements.txt
, run the following command from within the virtual environment:
pipdeptree --warn silence > requirements.txt
Dependencies can be updated using pur
. Run the following command within the virtual environment:
pur
To build a Windows executable, run the following command from within the virtual environment:
python build_release.py