Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b688fd7

Browse files
committedJul 13, 2018
Remove numpy dependency
1 parent 874bf2c commit b688fd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="strsim",
8-
version="0.0.2",
8+
version="0.0.3",
99
description="A library implementing different string similarity and distance measures",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
@@ -14,7 +14,7 @@
1414
author_email="stupidme.me.lzy@gmail.com",
1515
packages=setuptools.find_packages(),
1616
include_package_data=True,
17-
install_requires=["numpy>=1.12.0"],
17+
install_requires=[],
1818
license="MIT License",
1919
classifiers=(
2020
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)
Please sign in to comment.