[tool.poetry] name = "plex-playlist" version = "0.1.0" description = "Automated Daily Playlist Generator for Plex Music" authors = ["Cliff Hill "] 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,<3.10" click = "^7.0" PlexAPI = "^4.5.2" appdirs = "^1.4.4" PyYAML = "^5.4.1" asyncpg = "^0.23.0" uvloop = "^0.15.2" desert = "^2020.11.18" numpy = "^1.21.2" SQLAlchemy = "^1.4.25" typeguard = "^2.12.1" [tool.poetry.dev-dependencies] typeguard = "^2.12.0" jupyter = "^1.0.0" pre-commit = "^2.13.0" pre-commit-hooks = "^4.0.1" pytest = "^6.2.5" pytest-asyncio = "^0.15.1" pytest-mock = "^3.6.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"