-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·42 lines (38 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
executable file
·42 lines (38 loc) · 1.19 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
[project]
name = 'indico-custom-pass'
description = 'Grants admins the ability to customize Indico Google Wallet & Apple Pay passes.'
readme = 'README.md'
version = '1.0.4'
license = {text = "MIT License"}
authors = [{ name = 'RobotHanzo', email = 'admin@robothanzo.dev' }]
classifiers = [
'Environment :: Plugins',
'Environment :: Web Environment',
'Programming Language :: Python :: 3.12',
]
requires-python = '>=3.12, <3.13'
dependencies = ['indico>=3.3', 'pygments>=2.7.2,<3', 'indico-patcher>=0.2.1']
[project.urls]
GitHub = 'https://github.com/RobotHanzo/IndicoCustomPass'
[project.entry-points.'indico.plugins']
custom_pass = 'indico_custom_pass.plugin:CustomPassPlugin'
[build-system]
requires = ['hatchling==1.27.0']
build-backend = 'hatchling.build'
[tool.hatch.build]
packages = ['indico_custom_pass']
exclude = [
'*.no-header',
'.keep',
# exclude original client sources (they are all included in source maps anyway)
'indico_*/client/',
# no need for tests outside development
'test_snapshots/',
'tests/',
'*_test.py',
]
artifacts = [
'indico_*/translations/**/messages-react.json',
'indico_*/translations/**/*.mo',
'indico_*/static/dist/',
]