-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (39 loc) · 952 Bytes
/
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 = "bapsicle"
version = "3.1.1"
description = ""
authors = ["University Radio York"]
readme = "README.md"
packages = [{include = "__init__.py"}]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
wheel = "^0.43.0"
pygame = "^2.5.2"
sanic = "^23.12.1"
sanic-cors = "^2.2.0"
syncer = "^2.0.3"
aiohttp = "^3.9.3"
mutagen = "^1.47.0"
sounddevice = "^0.4.6"
setproctitle = "^1.3.3"
pyttsx3 = "^2.90"
websockets = "^12.0"
typing-extensions = "^4.10.0"
pyserial = "^3.5"
requests = "^2.31.0"
jinja2 = "^3.1.3"
pydub = "^0.25.1"
psutil = "^5.9.8"
[tool.poetry.group.dev.dependencies]
pyinstaller = [
{version = "^6.5.0", platform = "linux"},
{version = "^6.5.0", platform = "darwin"}
]
auto-py-to-exe = {version = "^2.43.3", platform = "win32"}
pywin32 = {version = "^306", platform = "win32"}
autopep8 = "^2.1.0"
flake8 = "^7.0.0"
black = "^24.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"