Skip to content

Commit 6384ef9

Browse files
committed
Changed package name
1 parent eabd8f3 commit 6384ef9

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ venv/
66
build/
77
dist/
88
pystrsim.egg-info/
9+
strsim.egg-info/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A library implementing different string similarity and distance measures. A doze
3232
From pypi:
3333

3434
```bash
35-
pip install pystrsim
35+
pip install strsim
3636
```
3737

3838
or clone this repository:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name="pystrsim",
7+
name="strsim",
88
version="0.0.1",
99
description="A library implementing different string similarity and distance measures",
1010
long_description=long_description,

similarity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
# SOFTWARE.
2020

21-
__name__ = 'pystrsim'
21+
__name__ = 'strsim'

0 commit comments

Comments
 (0)