Skip to content

Commit 1d5465a

Browse files
committed
Add requirements and update README
1 parent a1d0c08 commit 1d5465a

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.vscode/
33
__pycache__/
44
similarity/__pycache__/
5+
venv/

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ A library implementing different string similarity and distance measures. A doze
2727
* [Users](#users)
2828

2929

30+
## Download
31+
32+
```bash
33+
git clone https://github.com/luozhouyang/python-string-similarity
34+
cd python-string-similarity
35+
pip install -r requirements.txt
36+
```
37+
3038
## Overview
3139

3240
The main characteristics of each implemented algorithm are presented below. The "cost" column gives an estimation of the computational cost to compute the similarity between two strings of length m and n respectively.

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
numpy

0 commit comments

Comments
 (0)