2021-12-19 14:50:40 +00:00
|
|
|
import io
|
|
|
|
from skbuild import setup
|
2021-08-31 22:09:36 +00:00
|
|
|
|
2021-12-19 14:50:40 +00:00
|
|
|
with io.open('README.md', 'rt', encoding="utf8") as f:
|
|
|
|
readme = f.read()
|
2020-02-29 17:17:00 +00:00
|
|
|
|
2021-12-19 14:50:40 +00:00
|
|
|
setup(
|
|
|
|
name="rapidfuzz",
|
|
|
|
version="2.0.0",
|
|
|
|
extras_require={'full': ['numpy']},
|
|
|
|
url="https://github.com/maxbachmann/RapidFuzz",
|
|
|
|
author="Max Bachmann",
|
|
|
|
author_email="contact@maxbachmann.de",
|
|
|
|
description="rapid fuzzy string matching",
|
|
|
|
long_description=readme,
|
|
|
|
long_description_content_type="text/markdown",
|
2020-02-29 17:17:00 +00:00
|
|
|
|
2021-12-19 14:50:40 +00:00
|
|
|
license="MIT",
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"License :: OSI Approved :: MIT License"
|
|
|
|
],
|
2021-08-31 22:09:36 +00:00
|
|
|
|
2021-12-19 15:11:22 +00:00
|
|
|
packages=["rapidfuzz"],
|
2021-12-19 14:50:40 +00:00
|
|
|
package_dir={'':'src'},
|
|
|
|
zip_safe=True,
|
|
|
|
include_package_data=True,
|
|
|
|
python_requires=">=3.6"
|
|
|
|
)
|