forked from d4nj1/TLPUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 867 Bytes
/
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
[tool.poetry]
name = "tlp-ui"
version = "1.6.5"
description = "GTK UI for tlp"
license = "GPL-2.0-or-later"
authors = ["Daniel Christophis <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/d4nj1/TLPUI"
repository = "https://github.com/d4nj1/TLPUI"
documentation = "https://github.com/d4nj1/TLPUI/docs"
keywords = ["battery", "power", "config"]
classifiers = ["Topic :: Utilities"]
packages = [{include = "tlpui"}]
[tool.poetry.build]
generate-setup-file = true
[tool.poetry.scripts]
tlpui = "tlpui.__main__:main"
[tool.poetry.dependencies]
python = "^3.8.1"
pygobject = "^3.46.0"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
tox = "^4.12.1"
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
pylint = "^3.0.3"
pycodestyle = "^2.11.1"
pydocstyle = "^6.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"