-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.76 KB
/
pyproject.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.0.0", "Cython>=3.0.8"]
build-backend = "setuptools.build_meta"
[project]
name = "editdistpy"
version = "0.1.5"
requires-python = ">=3.8"
authors = [
{name = "mmb L"},
]
description = "Fast Levenshtein and Damerau optimal string alignment algorithms."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["edit distance", "levenshtein", "damerau"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Repository = "https://github.com/mammothb/editdistpy"
Changelog = "https://github.com/mammothb/editdistpy/blob/master/CHANGELOG.md"
[tool.basedpyright]
reportUnusedCallResult = "none"
[tool.cibuildwheel]
skip = "cp36-* cp37-* pp* *_i686 *_ppc64le *_s390x"
environment = {LDFLAGS="-Wl,--strip-all"}
build-verbosity = "3"
test-command = "pytest --traceconfig -sv {package}/tests"
test-requires = ["pytest==8.3.2"]
[[tool.cibuildwheel.overrides]]
select = "*-macosx*"
environment = {CFLAGS="-g0"}
[tool.setuptools.packages.find]
where = ["."]
include = ["editdistpy"]