-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.flake8]
ignore = ["E402", "W503", "E127", "E126"]
max-line-length = 120
[tool.autopep8]
ignore = ["E402", "W503", "E127", "E126"]
max-line-length = 120
# [tool.pyright]
# typeCheckingMode = "base"
# reportMissingModuleSource = false
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "qserverinfo"
version = "1.0.5"
description = "Shows info about quake servers in the tray"
readme = "README.md"
authors = [{ name = "ColdSpirit" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["quake", "tray", "server", "info", "xonotic", "doombringer"]
dependencies = [
"colour==0.1.5",
"Pillow==9.3.0",
"PyGObject==3.42.2",
"pyq3serverlist==0.2.0",
]
requires-python = ">=3.10"
[project.urls]
"Homepage" = "https://github.com/ColdSpirit0/QServerInfo"
"Bug Tracker" = "https://github.com/ColdSpirit0/QServerInfo/issues"
[project.scripts]
qserverinfo = "qserverinfo.entry:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"qserverinfo.app.data" = ["*"]
"qserverinfo.app.styles" = ["*"]