-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 795 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 795 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 = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.poetry.plugins."pretix.plugin"]
pretix_extended_api = "pretix_extended_api:PretixPluginMeta"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pretix==2024.3",
"pytest<8.0.0,>=7.3.0",
"pytest-django<5.0.0,>=4.5.2",
"pycryptodome>=3.17",
]
[tool.pdm.build]
includes = ["pretix_extended_api"]
[project]
name = "pretix-plugin-extended-api"
version = "0.1.14"
description = "Extend the REST API to expose more information needed by the PyCon Italia repository."
authors = [
{name = "Python Italia"},
]
dependencies = []
requires-python = ">=3.9,<4.0"
readme = "README.rst"
license = {text = "MIT"}
[project.entry-points."pretix.plugin"]
pretix_extended_api = "pretix_extended_api:PretixPluginMeta"