-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (41 loc) · 1.5 KB
/
pyproject.toml
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
45
46
47
48
49
50
[project]
name = "pretalx-halfnarp"
dynamic = ["version"]
description = """
Pretalx-Halfnarp is a Plugin that helps you to estimate the interest in
your submissions and plan room-sizes accordingly by scheduling the most
requested submissions into the larger rooms. It can also help you avoid
overlaps by correlating submissions that are preferred by the same
people so that you can plan them at different times.
Halfnarp is an anagram of Fahrplan, a not-yet sorted Fahrplan"""
readme = "README.rst"
license = {text = "Apache Software License"}
keywords = ["pretalx"]
authors = [
{name = "Peter Körner", email = "[email protected]"},
{name = "Franziska Kunsmann", email = "[email protected]"},
]
maintainers = [
{name = "Franziska Kunsmann", email = "[email protected]"},
]
dependencies = [
"jsonschema==4.19.0",
"jsonschema-specifications==2023.7.1",
]
[project.entry-points."pretalx.plugin"]
pretalx_halfnarp = "pretalx_halfnarp:PretalxPluginMeta"
[project.entry-points."distutils.commands"]
build = "pretalx_plugin_build.build:CustomBuild"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project.urls]
homepage = "https://github.com/seibert-media/pretalx-halfnarp"
repository = "https://github.com/seibert-media/pretalx-halfnarp.git"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretalx_halfnarp.__version__"}
[tool.setuptools.packages.find]
include = ["pretalx*"]
namespaces = false