-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.01 KB
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 = "cursed-controls"
version = "0.1.0"
description = "Map any evdev input device to a virtual Xbox 360 wireless receiver over USB OTG"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"evdev>=1.9.2",
"pyyaml>=6.0.3",
"fastapi>=0.110",
"pydantic==2.12.3",
"pydantic-core==2.41.4",
"uvicorn>=0.29",
"websockets==16.0",
"python-multipart>=0.0.9",
]
[project.scripts]
cursed-controls = "cursed_controls.cli:main"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"httpx>=0.27",
]
[tool.uv.sources]
evdev = { index = "piwheels", marker = "platform_machine == 'armv6l'" }
pyyaml = { index = "piwheels", marker = "platform_machine == 'armv6l'" }
pydantic-core = { index = "piwheels", marker = "platform_machine == 'armv6l'" }
websockets = { index = "piwheels", marker = "platform_machine == 'armv6l'" }
[[tool.uv.index]]
name = "piwheels"
url = "https://www.piwheels.org/simple"
explicit = true
[tool.setuptools.packages.find]
where = ["."]
include = ["cursed_controls*"]