mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-14 19:14:19 +01:00
44 lines
943 B
TOML
44 lines
943 B
TOML
|
[project]
|
||
|
name = "pretix-servicefees"
|
||
|
dynamic = ["version"]
|
||
|
description = "Allows you to impose a service fee on all non-free orders."
|
||
|
readme = "README.rst"
|
||
|
requires-python = ">=3.9"
|
||
|
license = {file = "LICENSE"}
|
||
|
keywords = ["pretix"]
|
||
|
authors = [
|
||
|
{name = "pretix team", email = "support@pretix.eu"},
|
||
|
]
|
||
|
maintainers = [
|
||
|
{name = "pretix team", email = "support@pretix.eu"},
|
||
|
]
|
||
|
|
||
|
dependencies = [
|
||
|
|
||
|
]
|
||
|
|
||
|
[project.entry-points."pretix.plugin"]
|
||
|
pretix_servicefees = "pretix_servicefees: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-servicefees"
|
||
|
|
||
|
[tool.setuptools]
|
||
|
include-package-data = true
|
||
|
|
||
|
[tool.setuptools.dynamic]
|
||
|
version = {attr = "pretix_servicefees.__version__"}
|
||
|
|
||
|
[tool.setuptools.packages.find]
|
||
|
include = ["pretix*"]
|
||
|
namespaces = false
|