Mixonomer/pyproject.toml

38 lines
1011 B
TOML
Raw Normal View History

[tool.poetry]
name = "music"
version = "1.0.1"
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]
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-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" }
[tool.poetry.dev-dependencies]
2021-03-23 22:26:59 +00:00
pylint = "^2.5.3"
python-dotenv = "^0.17.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"