-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (35 loc) · 993 Bytes
/
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
[project]
name = "pretix-manualseats"
dynamic = ["version"]
description = "Manually assign tickets to seats."
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8"
keywords = ["pretix"]
authors = [
{name = "Moritz Lerch", email = "[email protected]"},
]
maintainers = [
{name = "Moritz Lerch", email = "[email protected]"},
]
dependencies = [
]
[project.entry-points."pretix.plugin"]
pretix_manualseats = "pretix_manualseats:PretixPluginMeta"
[project.entry-points."distutils.commands"]
build = "pretix_plugin_build.build:CustomBuild"
[build-system]
requires = [
"setuptools",
"pretix-plugin-build",
]
[project.urls]
homepage = "https://github.com/moritzlerch/pretix-manualseats"
repository = "https://github.com/moritzlerch/pretix-manualseats"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretix_manualseats.__version__"}
[tool.setuptools.packages.find]
include = ["pretix*"]
namespaces = false