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 4
4
long_description = fh .read ()
5
5
6
6
setuptools .setup (
7
- name = "strsim " ,
8
- version = "0.0.3 " ,
7
+ name = "strsimpy " ,
8
+ version = "0.1.0 " ,
9
9
description = "A library implementing different string similarity and distance measures" ,
10
10
long_description = long_description ,
11
11
long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change 35
35
from .string_similarity import StringSimilarity
36
36
from .weighted_levenshtein import WeightedLevenshtein
37
37
38
- __name__ = 'strsim'
38
+ __name__ = 'strsimpy'
39
+ __version__ = '0.1.0'
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- source venv/bin/ activate
3
+ conda activate strsim
4
4
python3 setup.py sdist bdist_wheel
5
5
twine upload dist/*
6
6
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