-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.39 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
52
53
54
55
56
57
58
59
[project]
name = "indicorp"
dynamic = ["version"]
description = "An Indico distribution"
readme = "README.md"
license = "MIT"
authors = [{ name = "Alejandro Avilés", email = "ome@unconventional.dev" }]
requires-python = '>=3.12.2'
dependencies = []
[dependency-groups]
dev = [
"indico[dev]",
"indico-plugin-vc-zoom"
]
[project.urls]
Repository = "https://github.com/unconventionaldotdev/indicorp"
[project.entry-points."indico.plugins"]
indicorp = "indicorp.plugin:Distro"
[tool.uv]
# XXX: Make uv refresh metadata of editable packages
reinstall-package = [
"indicorp",
"indico",
"indico-plugin-vc-zoom"
]
[tool.uv.sources]
indico = { path = "indico", editable = true }
indico-plugin-vc-zoom = { path = "plugins/indico-plugins/vc_zoom", editable = true }
[build-system]
requires = ['hatchling==1.29.0']
build-backend = 'hatchling.build'
[tool.hatch]
version = { path = 'indicorp/__init__.py' }
[tool.hatch.build]
packages = ["indicorp"]
exclude = [
# exclude original client sources (they are all included in source maps anyway)
'indicorp/client/',
# no need for tests outside development
'tests/',
'*_test.py',
]
artifacts = [
'indicorp/translations/**/messages-react.json',
'indicorp/translations/**/*.mo',
'indicorp/static/dist/',
]
[tool.hatch.build.targets.sdist.hooks.custom]
path = 'plugins/indico-plugins/hatch_build.py'
dependencies = ['babel==2.18.0']