/bart-chart-race-ui

A desktop application to create a bar chart race

Primary LanguagePythonMIT LicenseMIT

Bar Chart Race UI

A desktop application to create a bar chart race.

Instructions to build the project

To run locally

  • create a virtual environment
  • install required dependencies using requirements.txt
  • run load_ui.py

To create singleton application

This command will generate a desktop application for the operating system in which you are running this command. eg. .exe file if run on windows, .app file if run on mac.

pyinstaller load_ui.py --onefile --windowed --hidden-import cmath 

If you need to include external files, use this command (adds folder fonts to the build).

pyinstaller --add-data 'fonts:fonts' load_ui.py --onefile --windowed --hidden-import cmath