File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 44 long_description = fh .read ()
55
66setuptools .setup (
7- name = "strsim " ,
8- version = "0.0.3 " ,
7+ name = "strsimpy " ,
8+ version = "0.1.0 " ,
99 description = "A library implementing different string similarity and distance measures" ,
1010 long_description = long_description ,
1111 long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change 3535from .string_similarity import StringSimilarity
3636from .weighted_levenshtein import WeightedLevenshtein
3737
38- __name__ = 'strsim'
38+ __name__ = 'strsimpy'
39+ __version__ = '0.1.0'
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- source venv/bin/ activate
3+ conda activate strsim
44python3 setup.py sdist bdist_wheel
55twine upload dist/*
66
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ conda activate strsim
4+ python3 setup.py sdist bdist_wheel
5+ twine upload --repository-url https://test.pypi.org/legacy/ dist/*
6+
7+ rm -rf build
8+ rm -rf dist
9+ rm -rf * .egg-info
You can’t perform that action at this time.
0 commit comments