-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 859 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (31 loc) · 859 Bytes
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
[build-system]
requires = ["setuptools >=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "xapian-haystack"
version = "4.0.0"
description = "A Xapian backend for Haystack"
readme = "README.rst"
license = "GPL-2.0-or-later"
license-files = ["LICENSE"]
authors = [
{name = "Jorge C. Leitão", email = "jorgecarleitao@gmail.com"}
]
maintainers = [
{name = "Claude Paroz", email = "claude@2xlibre.net"},
]
requires-python = ">=3.10"
dependencies = [
"django>=4.2",
"django-haystack>=3.0",
"filelock>=3.4",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Framework :: Django",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
homepage = "https://github.com/notanumber/xapian-haystack"