-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
77 lines (69 loc) · 1.93 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools", "wheel", "certifi", "setuptools-gettext", "cx_Freeze; sys_platform == 'win32'"]
build-backend = "setuptools.build_meta"
[project]
name = "steam-tools-ng"
version = "4.0"
description = "Steam Tools NG"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPLv3"}
keywords = ["steam", "valve"]
authors = [{email = "dev@lara.monster"}, {name = "Lara Maia"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Environment :: X11 Applications :: GTK",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed"
]
dependencies = [
"pywin32; sys_platform == 'win32'",
"stlib~=2.3",
"stlib-plugins~=1.2",
"aiohttp",
"certifi"
]
[project.urls]
homepage = "https://github.com/calendulish/steam-tools-ng"
repository = "https://github.com"
changelog = "https://github.com/calendulish/steam-tools-ng/releases"
[project.scripts]
steam-tools-ng = "steam_tools_ng.cli:main"
steam-tools-ng-gui = "steam_tools_ng.gui:main"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools-gettext]
build_dir = "locale"
[tool.distutils.build_exe]
packages = ["steam_tools_ng", "stlib-plugins", "gi", "win32com.client"]
excludes = [
"tkinter",
"distutils",
"pydoc_data",
"unittest",
"xmlrpc",
"doctest",
"ftplib",
"lzma",
"pdb",
"py_compile",
"tarfile",
"webbrowser",
"mypy",
"pytest"
]
optimize = 2
zip_include_packages = "*"
zip_exclude_packages = ["steam_tools_ng", "stlib", "stlib-plugins"]