aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: e388a2d8738846061c0ab23ffda18e139c93e049 (plain)
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
[tool.poetry]
name = "RWA.Support.SessionService"
version = "0.1.0"
description = "D-Bus service for RWA"
authors = [
    "Mike Gabriel <mike.gabriel@das-netzwerkteam.de>",
    "Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de>",
    "Jonathan Weth <dev@jonathanweth.de>"
]
license = "GPL-2.0-or-later"
packages = [
    { include = "rwa/" },
]
include = ["README.rst", "LICENCE", "org.ArcticaProject.RWASupportSessionService.service", "docs/*", "docs/*/**"]

[tool.poetry.dependencies]
python = "^3.9"
dbus-python = "^1.2.16"
PyGObject = "^3.36.1"
port_for = "^0.4"
requests = "^2.24.0"
websockify = "^0.9.0"
psutil = "^5.7.2"
flask = "^2.0.1"
argparse = "^1.0.10"
usersettings = "^1.1.5"
click = "^8.0.1"
validators="^0.18.2"

[tool.poetry.dev-dependencies]
aleksis-builddeps = "*"

[tool.poetry.scripts]
rwa-support-sessionservice = 'rwa.support.sessionservice.service:main'

[tool.black]
line-length = 100

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