-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (84 loc) · 2.14 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = [
"hatchling",
"versioningit",
]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "versioningit"
[tool.hatch.build.targets.wheel]
packages = ["gamepadla_plus", "*.txt"]
[project]
name = "gamepadla-plus"
description = "Gamepad Polling Rate and Latency Testing Tool (CLI & GUI)"
authors = [
{ name="Adam McKellar", email="[email protected]" },
{ name="John Punch" },
]
maintainers = [
{ name="Adam McKellar", email="[email protected]" },
]
readme = "README.md"
license = {text = "MIT"}
keywords = [
"gamepad",
"controller",
"polling-rate",
"latency-tester",
"input-lag",
"DInput",
"XInput",
"controller-latency",
"gamepad-testing",
"gaming-performance",
"input-testing",
"windows-gaming",
"input-polling",
"gaming-utilities",
"input-response",
"controller-utilities",
"gaming-tools",
"real-time-input",
"latency-measurement",
"gamepad-performance"
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Wireless Controller",
"Topic :: Education :: Testing",
"Framework :: PySimpleGUI",
"Framework :: PySimpleGUI :: 5",
"Topic :: Multimedia :: Graphics",
"Topic :: Terminals",
"Topic :: Utilities",
"Environment :: Console",
]
dynamic = ["version"]
dependencies = [
"colorama >=0.4.6,<0.5",
"tqdm >=4.66.6,<5",
"numpy >=2.1.2,<3",
"requests >=2.32.3,<3",
"pygame >=2.6.1,<3",
"typer >=0.12.5,<0.13",
"rich >=13.9.4,<14",
"freesimplegui >=5.1.1,<6",
]
[project.urls]
Repository = "https://github.com/WyvernIXTL/gamepadla-plus"
Issues = "https://github.com/WyvernIXTL/gamepadla-plus/issues"
[project.scripts]
gamepadla = "gamepadla_plus.__main__:run"
[dependency-groups]
license-fetching = [
"pip-licenses>=5.0.0,<6",
]
pyinstaller = [
"pyinstaller>=6.11.0,<7",
]