2021-01-27 01:45:47 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "music"
|
|
|
|
version = "1.0.0"
|
|
|
|
description = "Spotify smart playlist generator. Last.fm integration for listening statistics"
|
|
|
|
authors = ["andy <andy@sarsoo.xyz>"]
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://music.sarsoo.xyz/"
|
|
|
|
repository = "https://github.com/Sarsoo/Music-Tools"
|
|
|
|
|
|
|
|
[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-01-27 01:45:47 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
|
|
|
fireo = "^1.3.3"
|
|
|
|
Flask = "^1.1.2"
|
|
|
|
google-cloud-firestore = "^1.7.0"
|
|
|
|
google-cloud-logging = "^1.15.0"
|
|
|
|
google-cloud-pubsub = "^1.6.0"
|
|
|
|
google-cloud-tasks = "^1.5.0"
|
|
|
|
requests = "^2.24.0"
|
|
|
|
|
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"
|
|
|
|
Sphinx = "^3.5.3"
|
2021-01-27 01:45:47 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|