-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.3 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
[tool.poetry]
name = "python-manatools"
version = "0.99.0"
description = "Framework to build ManaTools applications"
license = "LGPL-2.1-or-later"
readme = "README.md"
homepage = "https://github.com/manatools/python-manatools"
repository = "https://github.com/manatools/python-manatools"
authors = [
"Angelo Naselli <[email protected]>",
]
maintainers = [
"Angelo Naselli <[email protected]>",
"Neal Gompa <[email protected]>",
]
packages = [
{ include = "manatools"},
]
include = [
{ path = "NEWS", format = "sdist" },
]
classifiers = [
# classifier: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Operating System",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/manatools/python-manatools/issues"
[tool.poetry.dependencies]
python = "^3.9"
dbus-python = "*"
python-gettext = "*"
PyYAML = "*"
# Optional dependencies for gui backend extras
PySide6 = { version = ">=6.5", optional = true }
PyCairo = { version = "*", optional = true }
PyGObject = { version = ">=3.42", optional = true }
[tool.poetry.extras]
qt = [ "PySide6" ]
gtk = [ "PyCairo", "PyGObject" ]
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"