-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (32 loc) · 907 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-mozilla"
dynamic = ["version"]
description = "Language module for use of pretalx at Mozilla events."
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 = []
[project.urls]
homepage = "https://github.com/pretalx/pretalx-mozilla"
repository = "https://github.com/pretalx/pretalx-mozilla.git"
[project.entry-points."pretalx.plugin"]
pretalx_mozilla = "pretalx_mozilla:PretalxPluginMeta"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretalx_mozilla.__version__"}
[tool.setuptools.packages.find]
include = ["pretalx*"]
[tool.check-manifest]
ignore = [
".*",
]