karthikb351 / ProntoUsage

A simple command line tool to check a user's VOLSBB usage
MIT License
4 stars 2 forks source link

PyInstaller Issues #4

Open karthikb351 opened 10 years ago

karthikb351 commented 10 years ago

In the future, we need to find a way to distribute this as a packaged app. Hopefully something people can add to their environment path variable, so they can just execute pronto in their command line and get the details.

karthikb351 commented 10 years ago

Currently tried this with PyInstaller with limited success.

aneesh-neelam commented 9 years ago

Why don't you add this to the Python Package Index? That way, people can just pip install pronto-usage and start using it.

For that, I think you need to make it a proper Python package, with init.py, setup.py and all.

Also, you should define dependencies using requirements.txt, not bundle them with this.

karthikb351 commented 9 years ago

That isn't the point. I wanted to make a binary I can just distribute so people can run it independent of Python.

aneesh-neelam commented 9 years ago

OK, got it. I want to know how to distribute a Python application as well.