Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 549 Bytes

README-dev.md

File metadata and controls

24 lines (18 loc) · 549 Bytes

Development documentation - Image Similarity Measures

Installing the required libraries

Follow instructions in main README to setup your virtual environment.

Install package locally using system link

pip install -e .

Install twine

pip install twine

Upgrading package in pypi

Set appropriate PYPI_USER and PYPI_PASSWORD in your environment.

python3 setup.py sdist bdist_wheel
python3 -m twine check dist/*
python3 -m twine upload -u $(PYPI_USER) -p $(PYPI_PASSWORD) dist/*