Mixonomer/pyproject.toml

42 lines
1.2 KiB
TOML
Raw Permalink Normal View History

[tool.poetry]
2023-10-13 19:43:51 +01:00
name = "mixonomer"
2023-08-08 17:29:12 +01:00
version = "1.0.2"
description = "Spotify smart playlist generator. Last.fm integration for listening statistics"
authors = ["andy <andy@sarsoo.xyz>"]
readme = "README.md"
2022-08-07 19:33:16 +01:00
homepage = "https://mixonomer.sarsoo.xyz/"
2022-08-07 13:27:59 +01:00
repository = "https://github.com/Sarsoo/Mixonomer"
[tool.poetry.scripts]
2021-02-07 18:32:07 +00:00
test = 'admin:test'
2021-03-20 18:48:07 +00:00
start = 'admin:run'
docs = 'admin:docs'
[tool.poetry.dependencies]
2023-08-08 17:29:12 +01:00
python = "~3.11"
fireo = "^2.1.0"
2022-07-28 07:00:27 +01:00
Flask = "^2.1.3"
2024-02-18 11:31:17 +00:00
google-cloud-firestore = "^2.10.0"
2022-07-28 07:00:27 +01:00
google-cloud-logging = "^3.2.1"
google-cloud-pubsub = "^2.13.4"
2022-11-29 21:13:26 +00:00
google-cloud-secret-manager = "^2.12.6"
2022-07-28 07:00:27 +01:00
google-cloud-tasks = "^2.10.0"
requests = "^2.28.1"
2024-07-20 12:27:11 +01:00
httpx = {extras = ["http2"], version = "^0.27.0"}
2022-08-08 18:37:17 +01:00
PyJWT = "^2.4.0"
functions-framework = "^3"
2024-02-18 11:31:17 +00:00
cryptography = "^42.0.3"
spotframework = { git = "https://github.com/Sarsoo/spotframework.git", branch = "master" }
fmframework = { git = "https://github.com/Sarsoo/pyfmframework.git", branch = "master" }
spotfm = { git = "https://github.com/Sarsoo/spotfm.git", branch = "master" }
[tool.poetry.dev-dependencies]
2021-03-23 22:26:59 +00:00
pylint = "^2.5.3"
2024-07-20 12:27:11 +01:00
python-dotenv = "^1.0.1"
2022-08-26 19:28:17 +01:00
Sphinx = "^5.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"