-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (53 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
51
52
53
54
55
56
57
58
59
# coding=utf-8
# SPDX-FileCopyrightText: 2016-2022 EasyCoding Team
#
# SPDX-License-Identifier: GPL-3.0-or-later
[project]
name = "hudman"
version = "9.0.0"
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
dependencies = [
"defusedxml>=0.7.0",
"requests>=2.22.0"
]
authors = [
{ name = "Vitaly Zaitsev", email="[email protected]" }
]
description = "HUD Manager is a simple tool for creating a local HUD mirror"
keywords = [
"hud",
"hud-database",
"hud-manager",
"manager",
"mirror",
"tf2",
"tf2-hud",
"tool",
"utility"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
requires-python = ">=3.6"
[project.urls]
homepage = "https://github.com/xvitaly/hudman"
documentation = "https://github.com/xvitaly/hudman/blob/master/docs/README.md"
repository = "https://github.com/xvitaly/hudman"
[project.scripts]
hudman = "hudman.app.run:main"
[project.optional-dependencies]
deploy = [
"pyinstaller>=5.7.0"
]
test = [
"tox>=3.27.0"
]
[build-system]
requires = [
"setuptools>=62.0.0",
"wheel>=0.37.0"
]
build-backend = "setuptools.build_meta"