39 lines
908 B
TOML
39 lines
908 B
TOML
[project]
|
|
name = "pretalx-musicrate"
|
|
dynamic = ["version"]
|
|
description = "pretalx plugin for rating music"
|
|
readme = "README.md"
|
|
license = {text = "Apache Software License"}
|
|
keywords = ["pretalx"]
|
|
authors = [
|
|
{name = "Luca", email = "Luca@hackerspace-bamberg.de"},
|
|
]
|
|
maintainers = [
|
|
{name = "Luca", email = "Luca@hackerspace-bamberg.de"},
|
|
]
|
|
|
|
dependencies = []
|
|
|
|
[project.urls]
|
|
homepage = "https://git.luj0ga.de/kontakt/pretalx-musicrate"
|
|
repository = "https://git.luj0ga.de/kontakt/pretalx-musicrate.git"
|
|
|
|
[project.entry-points."pretalx.plugin"]
|
|
pretalx_musicrate = "pretalx_musicrate:PretalxPluginMeta"
|
|
|
|
[build-system]
|
|
build-backend = "setuptools.build_meta"
|
|
requires = ["setuptools"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "pretalx_musicrate.__version__"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["pretalx*"]
|
|
|
|
[tool.check-manifest]
|
|
ignore = [".*"]
|