mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2025-06-06 21:52:24 +00:00
migrate to pyproject.toml
This commit is contained in:
parent
c6ceedf041
commit
85893d9c9c
2 changed files with 46 additions and 45 deletions
44
pyproject.toml
Normal file
44
pyproject.toml
Normal file
|
@ -0,0 +1,44 @@
|
|||
[project]
|
||||
name = "pretalx-broadcast-tools"
|
||||
version = "2.0.0"
|
||||
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"
|
||||
|
||||
[project.entry-points."distutils.commands"]
|
||||
build = "pretalx_plugin_build.build:CustomBuild"
|
||||
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools",
|
||||
"pretalx-plugin-build",
|
||||
]
|
||||
|
||||
[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.packages.find]
|
||||
include = ["pretalx*"]
|
||||
namespaces = false
|
Loading…
Add table
Add a link
Reference in a new issue