Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 396 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (17 loc) · 396 Bytes

Making a New Release

  • create and upload a new github tag == version
  • version++ for 'version' and 'download url'
 setup(
    # ...
    version='0.0.2',
    # ...
    download_url='https://github.com/computational-antiquity/corpussearch/archive/0.0.2.tar.gz',
    )
  • run these commands:
python setup.py sdist bdist_wheel
twine upload dist/*