-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.26 KB
/
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
41
42
43
[project]
name = "indico-plugin-payment-opencollective"
version = "0.1.1"
description = "Indico payment plugin for processing payment with Open Collective"
license = {text = "MIT License"}
authors = [{ name = 'Youngbin Han', email = '[email protected]' }]
readme = "README.md"
requires-python = ">=3.12"
dependencies = ['indico>=3.3', 'gql[requests]>=3.5.0']
classifiers = [
'Environment :: Plugins',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.12',
]
[project.urls]
GitHub = 'https://github.com/sukso96100/indico-plugin-payment-opencollective'
[project.entry-points.'indico.plugins']
payment_opencollective = 'indico_payment_opencollective.plugin:OpenCollectivePaymentPlugin'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
packages = ['indico_payment_opencollective']
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/',
]