This repository was archived by the owner on Dec 8, 2017. It is now read-only.
Initial go at moving into a proper packaged format ref #8 #10
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I think this is in line with what was being looked for. The result is on the PyPI test server here. The package is installable via
pip install -i https://testpypi.python.org/pypi pricespaidgui
Unfortunately I don't have any familiarity with the project and haven't gone through and got it running, so I am not sure if this matches the structure that'd be needed. Any necessary packages needed for the package to run can be included via the install_requires array in setup.py.
To build a package, I'd recommend starting a new virtualenv, installing something like the following
pip install -U "pip>=1.4" "setuptools>=0.9" "wheel>=0.21"
and then running
python setup.py sdist bdist_wheel
to generate the files. Form there they can be uploaded via command line or manually to PyPI.
Let me know if this seems like the right direction.