try: ditch waitress

This commit is contained in:
cwilvx
2025-02-07 17:10:27 +03:00
parent 7082f30209
commit beec5bc7d3
6 changed files with 1666 additions and 69 deletions
+39 -55
View File
@@ -1,57 +1,41 @@
[tool.poetry]
name = "Swing music player"
version = "0.1.0"
description = ""
authors = ["geoffrey45 <geoffreymungai45@gmail.com>"]
package-mode = false
[project]
name = "swing_music"
version = "2.0.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
Flask = "^2.0.2"
Flask-Cors = "^3.0.10"
requests = "^2.27.1"
Pillow = "^9.0.1"
"colorgram.py" = "^1.2.0"
tqdm = "^4.65.0"
rapidfuzz = "^2.13.7"
tinytag = ">=2.0.0"
Unidecode = "^1.3.6"
psutil = "^5.9.4"
show-in-file-manager = "^1.1.4"
flask-compress = "^1.13"
tabulate = "^0.9.0"
setproctitle = "^1.3.2"
locust = "^2.20.1"
waitress = "^2.1.2"
watchdog = "^4.0.0"
pendulum = "^3.0.0"
flask-openapi3 = "^3.0.2"
flask-jwt-extended = "^4.6.0"
sqlalchemy = "^2.0.31"
memory-profiler = "^0.61.0"
sortedcontainers = "^2.4.0"
xxhash = "^3.4.1"
ffmpeg-python = "^0.2.0"
schedule = "^1.2.2"
dependencies = [
"pillow>=11.1.0",
"Flask>=3.1.0",
"Flask-Cors>=3.0.10",
"requests>=2.27.1",
"colorgram.py>=1.2.0",
"tqdm>=4.65.0",
"rapidfuzz>=2.13.7",
"tinytag>=2.0.0",
"Unidecode>=1.3.6",
"psutil>=5.9.4",
"show-in-file-manager>=1.1.4",
"flask-compress>=1.13",
"tabulate>=0.9.0",
"setproctitle>=1.3.2",
"locust>=2.20.1",
"waitress>=2.1.2",
"watchdog>=4.0.0",
"pendulum>=3.0.0",
"flask-jwt-extended>=4.6.0",
"sqlalchemy>=2.0.31",
"memory-profiler>=0.61.0",
"sortedcontainers>=2.4.0",
"xxhash>=3.4.1",
"ffmpeg-python>=0.2.0",
"schedule>=1.2.2",
"flask-openapi3>=4.0.3",
"pillow>=11.1.0",
]
[tool.poetry.dev-dependencies]
pylint = "^2.15.5"
pytest = "^7.1.3"
hypothesis = "^6.56.3"
[tool.poetry.dev-dependencies.black]
version = "^22.6.0"
allow-prereleases = true
[tool.poetry.group.dev.dependencies]
pyinstaller = "^5.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[pytest]
console_output_style = "classic"
testpaths = "tests"
[dependency-groups]
dev = [
"pyinstaller>=6.11.1",
]