-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 1.02 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
[project]
name = "unvtray"
description = "Unvanquished Tray"
readme = "README.md"
authors = [
{name = "Maximilian Stahlberg", email = "viech@unvanquished.net"},
]
keywords = ["unvanquished"]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: First Person Shooters",
"Topic :: Games/Entertainment :: Real Time Strategy",
]
requires-python = ">=3.3"
dependencies = ["pillow", "pystray"]
dynamic = ["version"]
[project.urls]
Homepage = "https://unvanquished.net"
Repository = "https://github.com/Unvanquished/unvanquished-tray-browser"
[project.scripts]
unvtray = "unvtray.__main__:run"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools]
packages = ["unvtray", "unvtray.assets"]
[tool.setuptools.package-data]
"unvtray.assets" = ["*.otf", "*.png"]
[tool.black]
line-length = 79