-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.26 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "marhta"
version = "0.1.3"
description = "Fast string similarity algorithms in Rust"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = ["string", "similarity", "levenshtein", "jaro-winkler", "fuzzy"]
classifiers = [
"Development Status :: 4 - Beta",
"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 :: Rust",
"Topic :: Text Processing :: General",
]
[project.urls]
Repository = "https://github.com/pjwerneck/marhta"
[dependency-groups]
dev = [
"hypothesis>=6.113.0",
"maturin>=1.8.1",
"pytest>=8.3.4",
]
[tool.ruff]
exclude = [".git", ".venv"]
line-length = 99
target-version = "py312"
extend-exclude = ["neuropad/core/**"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.isort]
force-single-line = true
[tool.maturin]
# ...existing config...
[tool.poetry]
# ...existing config...
include = ["py.typed", "*.pyi"]
[tool.poetry.package-data]
marhta = ["py.typed", "*.pyi"]