-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (50 loc) · 1.74 KB
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
[project]
name = "lupyne"
version = "3.3.1"
description = "Pythonic search engine based on PyLucene."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [{name = "A. Coady"}]
keywords = ["lucene", "pylucene"]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Indexing",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/coady/lupyne"
Documentation = "https://coady.github.io/lupyne"
Changelog = "https://github.com/coady/lupyne/blob/main/CHANGELOG.md"
Issues = "https://github.com/coady/lupyne/issues"
[project.optional-dependencies]
rest = ["uvicorn[standard]", "fastapi"]
graphql = ["uvicorn[standard]", "strawberry-graphql[asgi]>=0.221"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ty.rules]
unresolved-import = "ignore"
[tool.pytest.ini_options]
addopts = "-p no:faulthandler"
filterwarnings = ["ignore:builtin type .* has no __module__ attribute:DeprecationWarning"]
[tool.coverage.run]
source = ["lupyne"]
branch = true
[dependency-groups]
dev = ["uvicorn[standard]", "strawberry-graphql[asgi]", "fastapi", "httpx2", "pytest-cov", "ty"]
docs = ["great-docs"]