Skip to content

Commit e46eaff

Browse files
committed
use pyproject.toml
1 parent 3bbf7ec commit e46eaff

File tree

2 files changed

+30
-23
lines changed

2 files changed

+30
-23
lines changed

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
11
[build-system]
22
requires = ["setuptools"]
33
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "python-Levenshtein"
7+
version = "0.27.1"
8+
dependencies = [
9+
"Levenshtein==0.27.1"
10+
]
11+
requires-python = ">= 3.9"
12+
authors = [
13+
{name = "Max Bachmann", email = "[email protected]"},
14+
]
15+
description = "Python extension for computing string edit distances and similarities."
16+
readme = "README.md"
17+
license = {text = "GPL-2.0-or-later"}
18+
classifiers = [
19+
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.9",
21+
"Programming Language :: Python :: 3.10",
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
25+
]
26+
keywords = ["string", "Levenshtein", "comparison", "edit-distance"]
27+
28+
[project.urls]
29+
Homepage = "https://github.com/rapidfuzz/python-Levenshtein"
30+
Documentation = "https://rapidfuzz.github.io/Levenshtein/"
31+
Repository = "https://github.com/rapidfuzz/python-Levenshtein.git"
32+
Issues = "https://github.com/rapidfuzz/python-Levenshtein/issues"
33+
Changelog = "https://github.com/rapidfuzz/python-Levenshtein/blob/main/CHANGELOG.rst"

setup.cfg

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)