From 174c4f8fdcf6eb298e3f8ed335137be0bf709591 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Thu, 1 Aug 2024 23:34:27 +0200 Subject: [PATCH] fix project properties --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 517f32da..88be64e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ requires-python = ">= 3.8" authors = [ {name = "Max Bachmann", email = "pypi@maxbachmann.de"}, ] -description = "Python extension for computing string edit distances and similarities." +description = "rapid fuzzy string matching" readme = "README.md" classifiers=[ "Programming Language :: Python :: 3", @@ -32,6 +32,11 @@ Repository = "https://github.com/rapidfuzz/RapidFuzz.git" Issues = "https://github.com/rapidfuzz/RapidFuzz/issues" Changelog = "https://github.com/rapidfuzz/RapidFuzz/blob/main/CHANGELOG.rst" +[project.optional-dependencies] +all = [ + "numpy" +] + [project.entry-points.pyinstaller40] hook-dirs = "rapidfuzz.__pyinstaller:get_hook_dirs" tests = "rapidfuzz.__pyinstaller:get_PyInstaller_tests"