-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
40 lines (32 loc) · 962 Bytes
/
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
[project]
name = "pretalx-venueless"
dynamic = ["version"]
description = "Static venueless for pretalx, e.g. information, venue listings, a Code of Conduct, etc."
readme = "README.rst"
license = {text = "Apache Software License"}
keywords = ["pretalx"]
authors = [
{name = "Tobias Kunze", email = "[email protected]"},
]
maintainers = [
{name = "Tobias Kunze", email = "[email protected]"},
]
dependencies = [
"PyJWT",
]
[project.urls]
homepage = "https://github.com/pretalx/pretalx-venueless"
repository = "https://github.com/pretalx/pretalx-venueless.git"
[project.entry-points."pretalx.plugin"]
pretalx_venueless = "pretalx_venueless:PretalxPluginMeta"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretalx_venueless.__version__"}
[tool.setuptools.packages.find]
include = ["pretalx*"]
[tool.check-manifest]
ignore = [".*"]