Make sure you have pip installed (eg. on Debian/Ubuntu, apt-get install python-pip
).
Then, run pip install gradescope-utils
See the Releases page.
Follow https://packaging.python.org/tutorials/packaging-projects/, but in brief:
- Bump the version in setup.py
- Tag the commit:
git tag vX.Y.Z COMMIT_SHA
- Build new packages:
python3 setup.py sdist bdist_wheel
- Upload packages:
python3 -m twine upload dist/*
Contact us at help@gradescope.com if you need help with these packages.