-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
71 lines (65 loc) · 1.75 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
70
71
[project]
name = "sqlitefts"
version = "1.0.0"
description = "A Python binding for tokenizers of SQLite Full Text Search"
authors = [{ name = "Hideaki Takahashi", email = "[email protected]" }]
dependencies = [
"cffi>=1.15.1 ; platform_python_implementation != 'PyPy'",
]
readme = "README.rst"
requires-python = ">=2.7,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<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.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 :: 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.rye]
managed = true
dev-dependencies = [
"mypy>=1.5.1",
"faker>=19.6.2",
"black>=23.9.1",
"flake8>=6.1.0",
"isort>=5.12.0",
"pytest>=7.4.2",
"types-cffi>=1.16.0.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["sqlitefts"]
[tool.hatch.build]
include = [
"sqlitefts/*.py",
"sqlitefts/*.pyi",
"sqlitefts/py.typed",
"tests/**",
]