Updated PyPI packaging instructions & Makefile.pypi.

This commit is contained in:
Joe Testa 2020-10-20 14:04:14 -04:00
parent 240b705d61
commit f893a8031f
3 changed files with 11 additions and 13 deletions

View File

@ -1,11 +1,15 @@
all:
python3 setup.py sdist bdist_wheel
rm -rf /tmp/pypi_upload
virtualenv -p /usr/bin/python3 /tmp/pypi_upload/
cp -R src /tmp/pypi_upload/
cp setup.py setup.cfg README.md LICENSE /tmp/pypi_upload/
/bin/bash -c "pushd /tmp/pypi_upload/; source bin/activate; pip3 install setuptools twine; python3 setup.py sdist bdist_wheel"
uploadtest:
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
/bin/bash -c "pushd /tmp/pypi_upload; source bin/activate; twine upload --repository-url https://test.pypi.org/legacy/ /tmp/pypi_upload/dist/*"
uploadprod:
twine upload dist/*
/bin/bash -c "pushd /tmp/pypi_upload; source bin/activate; twine upload /tmp/pypi_upload/dist/*"
clean:
rm -rf build/ dist/ src/*.egg-info/
rm -rf /tmp/pypi_upload/

View File

@ -2,12 +2,7 @@
To create package and upload to test server:
# apt install virtualenv
$ virtualenv -p /usr/bin/python3 /tmp/pypi_upload
$ cd /tmp/pypi_upload; source bin/activate
$ pip3 install twine
$ cp -R path/to/ssh-audit .
$ cd ssh-audit
$ sudo apt install python3-virtualenv
$ make -f Makefile.pypi
$ make -f Makefile.pypi uploadtest
@ -19,10 +14,8 @@ $ cd /tmp/pypi_test; source bin/activate
$ pip3 install --index-url https://test.pypi.org/simple ssh-audit
To upload to production server:
To upload to production server (hint: use username '__token__' and API token):
$ cd /tmp/pypi_upload; source bin/activate
$ cd ssh-audit
$ make -f Makefile.pypi uploadprod

View File

@ -22,6 +22,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Security