-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (32 loc) · 1.04 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
[tool.poetry]
name = "rf2-settings-widget"
version = "1.5.4"
description = ""
authors = ["Stefan Tapper <[email protected]>"]
readme = "README.md"
packages = [{include = "rf2settings", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
eel = "^0.16"
bottle = {file = "./local_pkgs/bottle-0.13.dev0.tar.gz"}
appdirs = "^1.4.4"
# PyGame 2.5.2 (SDL 2.28.3, Python 3.11.0) will not detect Joysticks with only axis (eg. Pedals) likely related
# to a bug in SDL https://github.com/pygame/pygame/issues/2932
# 2.4.0 (SDL 2.26.4, Python 3.11.0) works
pygame = "==2.4.0"
python-a2s = "^1.3.0"
psutil = "^5.9.6"
google-api-python-client = "^2.108.0"
gevent = "==23.9.1"
gevent-websocket = "==0.10.1"
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.2.0"
pyinstaller-hooks-contrib = ">=2023.10"
pywin32-ctypes = ">=0.2.0"
[tool.poetry.group.openvr.dependencies]
ruamel-yaml = "^0.17.21"
[tool.poetry.group.youtube.dependencies]
google-auth-oauthlib = "^0.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"