-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
80 lines (73 loc) · 2.04 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
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme>=22.8.0"]
build-backend = "hatchling.build"
[project]
dynamic = ["readme", "version"]
name = "lunr"
description = "A Python implementation of Lunr.js"
authors = [{ name = "Yeray Diaz Diaz", email = "[email protected]" }]
requires-python = ">=3.7"
license = "MIT"
keywords = ["lunr", "full", "text", "search"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Processing",
]
dependencies = [
"typing-extensions; python_version<'3.8'",
"importlib_metadata; python_version<'3.8'",
]
[project.urls]
Documentation = "https://lunr.readthedocs.io/en/latest/"
Changelog = "https://github.com/yeraydiazdiaz/lunr.py/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/yeraydiazdiaz/lunr.py/issues"
"Source Code" = "https://github.com/yeraydiazdiaz/lunr.py"
[project.optional-dependencies]
languages = [
"nltk"
]
tests = [
"lunr[languages]",
"pytest",
"pytest-timeout",
"tox",
"coverage",
]
docs = [
"furo",
"myst-parser",
"sphinx",
"sphinx-autobuild",
]
local = [
"build",
"twine",
"pytest-benchmark",
"wheel",
"mypy",
"flake8",
"black",
"pdbpp",
"ipython",
"mypy",
"hatch-fancy-pypi-readme",
]
dev = ["lunr[tests,docs,local]"]
[tool.hatch.version]
path = "lunr/__init__.py"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "README.md"