-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
42 lines (34 loc) · 1.02 KB
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
[project]
name = "pretix_stustapay_placeholders"
dynamic = ["version"]
description = "Pretix plugin for email placeholder extensions in StuStaPay"
readme = "README.rst"
license = {text = "Apache"}
keywords = ["pretix"]
authors = [
{name = "Tobias Jülg", email = "tobias.juelg@stusta.de"},
]
maintainers = [
{name = "Tobias Jülg", email = "tobias.juelg@stusta.de"},
]
dependencies = [
]
[project.entry-points."pretix.plugin"]
pretix_stustapay_placeholders = "pretix_stustapay_placeholders: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/stustapay/pretix_placeholders"
repository = "https://github.com/stustapay/pretix_placeholders"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretix_stustapay_placeholders.__version__"}
[tool.setuptools.packages.find]
include = ["pretix*"]
namespaces = false