-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 1.06 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
43
44
[project]
name = "pretix-worldlinedirect"
dynamic = ["version"]
description = "Accept payments through Worldline Direct"
readme = "README.rst"
license = {text = "Apache"}
keywords = ["pretix"]
authors = [
{name = "pretix team", email = "support@pretix.eu"},
]
maintainers = [
{name = "pretix team", email = "support@pretix.eu"},
]
dependencies = [
"onlinepayments-sdk-python3==4.23.*",
]
[project.entry-points."pretix.plugin"]
pretix_worldlinedirect = "pretix_worldlinedirect:PretixPluginMeta"
pretix_payonegopay = "pretix_payonegopay: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/pretix/pretix-worldlinedirect/"
repository = "https://github.com/pretix/pretix-worldlinedirect/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretix_worldlinedirect.__version__"}
[tool.setuptools.packages.find]
include = ["pretix*"]
namespaces = false