Files
plex-playlist-old/pyproject.toml
2021-05-21 13:54:11 -04:00

116 lines
2.8 KiB
TOML

[tool.poetry]
name = "plex-playlist"
version = "0.1.0"
description = "Automated Daily Playlist Generator for Plex Music"
authors = ["Cliff Hill <xlorep@darkhelm.org>"]
license = "MIT"
readme = "README.rst"
homepage = "https://gitlab.com/xlorepdarkhelm/plex-playlist"
repository = "https://gitlab.com/xlorepdarkhelm/plex-playlist"
documentation = "https://plex-playlist.readthedocs.io"
packages = [
{ include = "playlist", from = "src" },
]
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.urls]
Changelog = "https://gitlab.com/xlorepdarkhelm/plex-playlist/releases"
[tool.poetry.dependencies]
python = "^3.9"
click = "^7.0"
PlexAPI = "^4.5.2"
aioreactive = "^0.15.0"
appdirs = "^1.4.4"
PyYAML = "^5.4.1"
gino = "^1.0.1"
asyncpg = "^0.23.0"
uvloop = "^0.15.2"
desert = "^2020.11.18"
[tool.poetry.dev-dependencies]
coverage = {extras = ["toml"], version = "^5.4"}
safety = "^1.10.3"
typeguard = "^2.11.1"
xdoctest = {extras = ["colors"], version = "^0.15.4"}
sphinx = "^3.5.2"
sphinx-autobuild = "^2020.9.1"
pre-commit = "^2.11.1"
darglint = "^1.7.0"
reorder-python-imports = "^2.4.0"
pre-commit-hooks = "^3.4.0"
sphinx-rtd-theme = "^0.5.1"
sphinx-click = "^2.6.0"
Pygments = "^2.8.1"
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"
[tool.poetry.scripts]
plex-playlist = "playlist.__main__:main"
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["playlist"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"