ztane / python-Levenshtein

The Levenshtein Python C extension module contains functions for fast computation of Levenshtein distance and string similarity
GNU General Public License v2.0
1.26k stars 155 forks source link

Use git tags? #37

Open phaer opened 5 years ago

phaer commented 5 years ago

Hi, Thanks for this nice library. What do you think about using git tag to track releases in git as well? I prefer fetching python dependencies from source and having a 1:1 relationship between pypi releases and git tags at least for upcoming releases would simplify things quite a lot.

Just git tag "v$version" HEAD && git push origin "v$version" should suffice, and maybe custom "upload" task in setup.py could enable this without complicating things for maintainers? What do you think?