-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1.08 KB
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
51
[project]
name = "exhibition"
dynamic = ["version"]
description = "Eventyay-tickets plugin to add and manage exhibitors"
readme = "README.rst"
requires-python = ">=3.12, <3.13"
license = {file = "LICENSE"}
keywords = ["Eventyay"]
authors = [
{name = "eventyay team", email = "support@eventyay.com"},
]
maintainers = [
{name = "eventyay team", email = "support@eventyay.com"},
]
dependencies = [
"flake8>=7.3.0",
]
[project.optional-dependencies]
test = [
"pytest>=9.0.2",
"pytest-django>=4.9.0",
"pytest-env>=1.2.0",
"pytest-rerunfailures>=16.1",
]
[project.entry-points."pretix.plugin"]
exhibition = "exhibition:PretixPluginMeta"
[project.entry-points."distutils.commands"]
build = "pretix_plugin_build.build:CustomBuild"
[build-system]
requires = [
"setuptools",
"pretix-plugin-build",
]
[project.urls]
homepage = "https://github.com/fossasia/eventyay-exhibition"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "exhibition.__version__"}
[tool.setuptools.packages.find]
include = ["exhibition*"]
namespaces = false