Skip to content

Maintainers guide

Joachim Metz edited this page Feb 25, 2018 · 3 revisions

To update the SleuthKit source and versions run:

python setup.py update

PyPI

Set up .pypirc to have both pypitest and pypi:

[distutils]
index-servers =
  pypi
  pypitest

[pypi]
repository=https://upload.pypi.org/legacy/
username=$USERNAME
password=$PASSWORD

[pypitest]
repository=https://test.pypi.org/legacy/
username=$USERNAME
password=$PASSWORD

Also see: https://packaging.python.org/guides/migrating-to-pypi-org/

To upload a new release:

python setup.py sdist upload -r pypi
Clone this wiki locally