-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
[project]
name = "sqlitefts"
version = "1.0.0"
description = "A Python binding for tokenizers of SQLite Full Text Search"
authors = [{ name = "Hideaki Takahashi", email = "mymelo@gmail.com" }]
dependencies = [
"cffi>=1.17.0; python_version >= '3.9'",
"cffi>=1.15.1 ; platform_python_implementation != 'PyPy'",
]
readme = "README.rst"
requires-python = ">=2.7,>=3.9,<4"
license = { text = "MIT" }
keywords = [
"SQLite",
"Full-text",
"search",
"FTS",
"SQLite3",
"FTS3",
"FTS4",
"FTS5",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/hideaki-t/sqlite-fts-python/"
Repository = "https://github.com/hideaki-t/sqlite-fts-python.git"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["sqlitefts"]
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2 ; python_version >= '3.12'",
"faker>=30.0.0 ; python_full_version >= '3.12'",
"pytest>=8.3.2 ; python_version >= '3.12'",
"types-cffi>=1.16.0.0 ; python_version >= '3.12'",
"ruff>=0.6.2 ; python_version >= '3.12'",
]
[tool.hatch.build]
include = [
"sqlitefts/*.py",
"sqlitefts/*.pyi",
"sqlitefts/py.typed",
"tests/**",
]