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 33__pycache__ /
44similarity /__pycache__ /
55venv /
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+ author_email = "stupidme.me.lzy@gmail.com" ,
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