2021-05-11 11:28:42 -04:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "plex-playlist"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Playlist generator for Plex music"
|
|
|
|
|
authors = ["Cliff Hill <xlorep@darkhelm.org>"]
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 88
|
|
|
|
|
target-version = ["py39"]
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "^3.9"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-05-11 13:21:02 -04:00
|
|
|
wheel = "^0.36.2"
|
|
|
|
|
jupyter = "^1.0.0"
|
|
|
|
|
flake8 = "^3.8.4"
|
|
|
|
|
flake8_strict = "^0.2.1"
|
|
|
|
|
flake8-absolute-import = "^1.0"
|
|
|
|
|
flake8-aaa = "^0.11.1"
|
|
|
|
|
flake8-alfred = "^1.1.1"
|
|
|
|
|
flake8-annotations-complexity = "^0.0.6"
|
|
|
|
|
flake8-annotations = "^2.5.0"
|
|
|
|
|
flake8-cognitive-complexity = "^0.1.0"
|
|
|
|
|
flake8-commas = "^2.0.0"
|
|
|
|
|
flake8-comprehensions = "^3.3.1"
|
|
|
|
|
flake8-debugger = "^4.0.0"
|
|
|
|
|
flake8-deprecated = "^1.3"
|
|
|
|
|
flake8-docstrings = "^1.5.0"
|
|
|
|
|
flake8-expression-complexity = "^0.0.9"
|
|
|
|
|
flake8-executable = "^2.1.1"
|
|
|
|
|
flake8-fixme = "^1.1.1"
|
|
|
|
|
flake8-functions = "^0.0.5"
|
|
|
|
|
flake8-blind-except = "^0.2.0"
|
|
|
|
|
flake8-logging-format = "^0.6.0"
|
|
|
|
|
flake8-mock = "^0.3"
|
|
|
|
|
flake8-mutable = "^1.2.0"
|
|
|
|
|
flake8-mypy = "^17.8.0"
|
|
|
|
|
flake8-ownership = "^2.0.1"
|
|
|
|
|
flake8-print = "^4.0.0"
|
|
|
|
|
flake8-pyi = "^20.10.0"
|
|
|
|
|
flake8-pytest = "^1.3"
|
|
|
|
|
flake8-pytest-style = "^1.3.0"
|
|
|
|
|
flake8-rst = "^0.8.0"
|
|
|
|
|
flake8-string-format = "^0.3.0"
|
|
|
|
|
flake8-tidy-imports = "^4.2.1"
|
|
|
|
|
flake8-use-fstring = "^1.1"
|
|
|
|
|
flake8-variables-names = "^0.0.4"
|
|
|
|
|
pep8-naming = "^0.11.1"
|
|
|
|
|
flake8-bandit = "^2.1.2"
|
|
|
|
|
mypy = "^0.812"
|
|
|
|
|
bandit = "^1.7.0"
|
|
|
|
|
isort = "^5.7.0"
|
|
|
|
|
black = "^20.8b1"
|
|
|
|
|
pytest = "^6.2.2"
|
|
|
|
|
pytest-cov = "^2.11.1"
|
|
|
|
|
yamllint = "^1.26.0"
|
|
|
|
|
rstcheck = "^3.3.1"
|
|
|
|
|
|
2021-05-11 11:28:42 -04:00
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|