mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[project]
|
|
name = 'indico-plugin-payment-manual'
|
|
description = 'Payment plugin for Indico that can be used for custom payment information/links'
|
|
readme = 'README.md'
|
|
version = '3.3'
|
|
license = 'MIT'
|
|
authors = [{ name = 'Indico Team', email = 'indico-team@cern.ch' }]
|
|
classifiers = [
|
|
'Environment :: Plugins',
|
|
'Environment :: Web Environment',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3.12',
|
|
]
|
|
requires-python = '>=3.12.2, <3.13'
|
|
dependencies = ['indico>=3.3']
|
|
|
|
[project.urls]
|
|
GitHub = 'https://github.com/indico/indico-plugins'
|
|
|
|
[project.entry-points.'indico.plugins']
|
|
payment_manual = 'indico_payment_manual.plugin:ManualPaymentPlugin'
|
|
|
|
[build-system]
|
|
requires = ['hatchling==1.25.0']
|
|
build-backend = 'hatchling.build'
|
|
|
|
[tool.hatch.build]
|
|
packages = ['indico_payment_manual']
|
|
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/',
|
|
]
|
|
|
|
[tool.hatch.build.targets.sdist.hooks.custom]
|
|
path = '../hatch_build.py'
|
|
dependencies = ['babel==2.16.0']
|