File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 3
3
__pycache__ /
4
4
similarity /__pycache__ /
5
5
venv /
6
+ build /
7
+ dist /
8
+ pystrsim.egg-info /
Original file line number Diff line number Diff line change
1
+ import setuptools
2
+
3
+ with open ("README.md" , "r" ) as fh :
4
+ long_description = fh .read ()
5
+
6
+ setuptools .setup (
7
+ name = "pystrsim" ,
8
+ version = "0.0.1" ,
9
+ description = "A library implementing different string similarity and distance measures" ,
10
+ long_description = long_description ,
11
+ long_description_content_type = "text/markdown" ,
12
+ url = "https://github.com/luozhouyang/python-string-similarity" ,
13
+ author = "ZhouYang Luo" ,
14
+
15
+ packages = setuptools .find_packages (),
16
+ include_package_data = True ,
17
+ install_requires = ["numpy>=1.14.3" ],
18
+ license = "MIT License" ,
19
+ classifiers = (
20
+ "Programming Language :: Python :: 3" ,
21
+ "License :: OSI Approved :: MIT License" ,
22
+ "Operating System :: OS Independent" ,
23
+ )
24
+ )
Original file line number Diff line number Diff line change
1
+ __name__ = 'pystrsim'
You can’t perform that action at this time.
0 commit comments