Newer
Older
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
[tool.poetry]
name = "AlekSIS-App-Buelleten"
version = "1.0dev0"
packages = [
{ include = "aleksis" }
]
readme = "README.rst"
include = [
{ path = "aleksis/**/*.mo", format = ["sdist", "wheel"] },
{ path = "*.rst", format = "sdist" },
{ path = "tox.ini", format = "sdist" }
]
description = "AlekSIS (School Information System) — App Bülleten (Digital Signage)"
authors = ["Tom Teichler <tom.teichler@teckids.org>"]
license = "EUPL-1.2-or-later"
homepage = "https://aleksis.org"
repository = "https://edugit.org/AlekSIS/onboarding//AlekSIS-App-Buelleten"
documentation = "https://aleksis.edugit.io/official/AlekSIS-Core/docs/html/"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Education",
"Topic :: Education"
]
[[tool.poetry.source]]
name = "gitlab"
url = "https://edugit.org/api/v4/projects/461/packages/pypi/simple"
secondary = true
[tool.poetry.dependencies]
python = "^3.9"
aleksis-core = "^2.7"
[tool.poetry.dev-dependencies]
aleksis-builddeps = "*"
[tool.poetry.plugins."aleksis.app"]
buelleten = "aleksis.apps.buelleten.apps:DefaultConfig"
[tool.black]
line-length = 100
exclude = "/migrations/"
[tool.curlylint]
include = '\.html'
[tool.curlylint.rules]
aria_role = true
django_forms_rendering = true
image_alt = true
indent = 2
meta_viewport = true
no_autofocus = true
tabindex_no_positive = true
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"