2021-01-27 01:45:47 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "music"
|
2021-06-05 09:52:31 +01:00
|
|
|
version = "1.0.1"
|
2021-01-27 01:45:47 +00:00
|
|
|
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"
|
2021-01-27 01:45:47 +00:00
|
|
|
|
|
|
|
[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'
|
2021-06-19 12:54:24 +01:00
|
|
|
docs = 'admin:docs'
|
2021-01-27 01:45:47 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-07-28 07:00:27 +01:00
|
|
|
python = "~3.10"
|
|
|
|
fireo = "^1.5.1"
|
|
|
|
Flask = "^2.1.3"
|
|
|
|
google-cloud-firestore = "<=2.3.4"
|
|
|
|
google-cloud-logging = "^3.2.1"
|
|
|
|
google-cloud-pubsub = "^2.13.4"
|
|
|
|
google-cloud-tasks = "^2.10.0"
|
|
|
|
requests = "^2.28.1"
|
2022-08-08 18:37:17 +01:00
|
|
|
PyJWT = "^2.4.0"
|
2021-01-27 01:45:47 +00:00
|
|
|
|
2021-02-07 18:32:07 +00:00
|
|
|
spotframework = { git = "https://github.com/Sarsoo/spotframework.git" }
|
|
|
|
fmframework = { git = "https://github.com/Sarsoo/pyfmframework.git" }
|
|
|
|
spotfm = { git = "https://github.com/Sarsoo/spotfm.git" }
|
2021-01-27 01:45:47 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-03-23 22:26:59 +00:00
|
|
|
pylint = "^2.5.3"
|
2021-06-19 12:54:24 +01:00
|
|
|
python-dotenv = "^0.17.1"
|
2022-08-26 19:28:17 +01:00
|
|
|
Sphinx = "^5.1.1"
|
2021-01-27 01:45:47 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|