Skip to content
Snippets Groups Projects
pyproject.toml 1.35 KiB
Newer Older
[tool.poetry]
name = "AlekSIS-App-Matrix"
version = "2.0.1.dev0"
packages = [
    { include = "aleksis" }
]
readme = "README.rst"
Jonathan Weth's avatar
Jonathan Weth committed
include = ["CHANGELOG.rst", "LICENCE.rst", "aleksis/**/*.mo"]

description = "AlekSIS (School Information System) — App Matrix (Integration with Matrix/Element)"
authors = ["Jonathan Weth <dev@jonathanweth.de>"]
Jonathan Weth's avatar
Jonathan Weth committed
maintainers = [
    "Jonathan Weth <wethjo@katharineum.de>",
    "Dominik George <dominik.george@teckids.org>"
]
license = "EUPL-1.2-or-later"
homepage = "https://aleksis.org"
Tom Teichler's avatar
Tom Teichler committed
repository = "https://edugit.org/AlekSIS/official/AlekSIS-App-Matrix"
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Web Environment",
Jonathan Weth's avatar
Jonathan Weth committed
    "Framework :: Django :: 3.0",
    "Intended Audience :: Education",
Jonathan Weth's avatar
Jonathan Weth committed
    "Topic :: Education",
    "Typing :: Typed",
 ]

[[tool.poetry.source]]
name = "gitlab"
url = "https://edugit.org/api/v4/projects/461/packages/pypi/simple"
secondary = true

[tool.poetry.dependencies]
Jonathan Weth's avatar
Jonathan Weth committed
python = "^3.9"
Jonathan Weth's avatar
Jonathan Weth committed
aleksis-core = "^3.0"

[tool.poetry.dev-dependencies]
aleksis-builddeps = ">=2023.1.dev0"
matrix-synapse = "^1.49.2"
pytest-xprocess = "^0.19.0"

[tool.poetry.plugins."aleksis.app"]
matrix = "aleksis.apps.matrix.apps:DefaultConfig"

[tool.black]
line-length = 100
exclude = "/migrations/"

[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"