-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (77 loc) · 2.15 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
81
82
83
84
85
86
87
[project]
name = "collective.elastic.ingest"
version = "2.1.3"
description = "Ingestion service queue runner between Plone RestAPI and ElasticSearch or OpenSearch."
keywords = ["elasticsearch", "opensearch", "plone", "celery", "search", "indexer"]
readme = "README.rst"
maintainers = [
{name = "Jens Klein", email = "[email protected]"},
]
authors = [
{name = "Jens Klein", email = "[email protected]"},
{name = "Katja Süss"},
{name = "Peter Holzer"},
]
requires-python = ">=3.8"
license = { text = "GPL 2.0" }
classifiers = [
"Environment :: Web Environment",
"Framework :: Plone",
"Programming Language :: Python",
"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",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"CacheControl",
"celery",
"requests",
"setuptools",
]
[project.urls]
PyPI = "https://pypi.python.org/pypi/collective.elastic.ingest"
Changelog = "https://github.com/collective/collective.elastic.ingest/blob/main/CHANGES.rst"
Source = "https://github.com/collective/collective.elastic.ingest"
Issues = "https://github.com/collective/collective.elastic.ingest/issues"
[project.optional-dependencies]
redis = ["celery[redis]"]
rabbitmq = ["celery[librabbitmq]"]
opensearch = ["opensearch-py>=2"]
elasticsearch = ["elasticsearch>=8.0"]
sentry = ["sentry-sdk"]
test = [
"pytest",
"requests-mock",
"pdbpp",
]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"src",
]
[tool.isort]
profile = "plone"
[tool.black]
include = "src"
[tool.codespell]
ignore-words-list = "discreet,"
skip = './examples/*,./venv/*'
[tool.check-manifest]
ignore = [
".editorconfig",
".pre-commit-config.yaml",
"tox.ini",
"mypy.ini",
".flake8",
"mx.ini",
]