Skip to content

Commit 1512c33

Browse files
committed
Upload v0.1.0
1 parent f04838c commit 1512c33

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
long_description = fh.read()
55

66
setuptools.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",

strsim/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@
3535
from .string_similarity import StringSimilarity
3636
from .weighted_levenshtein import WeightedLevenshtein
3737

38-
__name__ = 'strsim'
38+
__name__ = 'strsimpy'
39+
__version__ = '0.1.0'

upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
source venv/bin/activate
3+
conda activate strsim
44
python3 setup.py sdist bdist_wheel
55
twine upload dist/*
66

upload_test.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

0 commit comments

Comments
 (0)