-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 793 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="stringpairfinder",
version="2.0.1",
description="Package designed to match strings by similarity",
author="Antoine PINTO",
author_email="antoine.pinto1@outlook.fr",
license="MIT",
license_file="LICENSE",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AntoinePinto/stringpairfinder",
project_urls={
"Source Code": "https://github.com/AntoinePinto/stringpairfinder",
},
keywords=["string", "string matching", "algorithm", "similarity"],
packages=find_packages(),
install_requires=[
"numpy>=1.21.6"
],
python_requires=">=3.7"
)