-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.63 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
[project]
name = "lupyne"
version = "3.3"
description = "Pythonic search engine based on PyLucene."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
authors = [{name = "Aric Coady", email = "[email protected]"}]
keywords = ["lucene", "pylucene"]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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 = ["fastapi"]
graphql = ["strawberry-graphql[asgi]>=0.221"]
[tool.ruff]
line-length = 100
[tool.ruff.format]
quote-style = "preserve"
[[tool.mypy.overrides]]
module = ["lucene", "jcc", "java.*", "org.apache.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "-p no:faulthandler"
filterwarnings = ["ignore:builtin type .* has no __module__ attribute:DeprecationWarning"]
[tool.coverage.run]
source = ["lupyne"]
branch = true