-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.45 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
[project]
name = "tutor-meilisearch"
dynamic = ["version"]
description = "A Tutor plugin for search using Meilisearch"
readme = "README.rst"
license = { file = "LICENSE.txt" }
requires-python = ">=3.8"
authors = [
{ name = "Braden MacDonald", email = "[email protected]" },
{ name = "Overhang.IO", email = "[email protected]" },
]
maintainers = [
{ name = "Braden MacDonald", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"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",
]
dependencies = [
"tutor>=17.0.0,<19.0.0",
]
[project.optional-dependencies]
dev = [
"tutor[dev]>=17.0.0,<19.0.0",
]
[project.entry-points."tutor.plugin.v1"]
meilisearch = "tutor_meili.plugin"
[project.urls]
Code = "https://github.com/open-craft/tutor-contrib-meilisearch"
Community = "https://discuss.openedx.org"
Documentation = "https://docs.tutor.edly.io/"
Homepage = "https://docs.tutor.edly.io/"
"Issue tracker" = "https://github.com/open-craft/tutor-contrib-meilisearch/issues"
[tool.setuptools.dynamic]
version = {attr = "tutor_meili.__about__.__version__"}