mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-10 21:35:50 +00:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[project]
|
|
name = "pretalx-broadcast-tools"
|
|
dynamic = ["version"]
|
|
description = """
|
|
Some tools which can be used for supporting a broadcasting software.
|
|
This currently includes a generator for PDF printouts, a 'lower thirds'
|
|
endpoint, and a full-screen webpage showing information about the
|
|
currently running talk.
|
|
"""
|
|
readme = "README.rst"
|
|
license = {text = "Apache Software License"}
|
|
keywords = ["pretalx"]
|
|
authors = [
|
|
{name = "Franziska Kunsmann", email = "git@kunsmann.eu"},
|
|
]
|
|
maintainers = [
|
|
{name = "Franziska Kunsmann", email = "git@kunsmann.eu"},
|
|
]
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
[project.entry-points."pretalx.plugin"]
|
|
pretalx_broadcast_tools = "pretalx_broadcast_tools:PretalxPluginMeta"
|
|
|
|
[build-system]
|
|
build-backend = "setuptools.build_meta"
|
|
requires = ["setuptools", "wheel"]
|
|
|
|
[project.urls]
|
|
homepage = "https://github.com/Kunsi/pretalx-plugin-broadcast-tools"
|
|
repository = "https://github.com/Kunsi/pretalx-plugin-broadcast-tools.git"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "pretalx_broadcast_tools.__version__"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["pretalx*"]
|