Files
plex-playlist-old/pyproject.toml
2022-03-18 14:25:44 -04:00

69 lines
1.5 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.10",
]
[tool.poetry.urls]
Changelog = "https://gitlab.com/xlorepdarkhelm/plex-playlist/releases"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
click = "^8.0.3"
PlexAPI = "^4.5.2"
appdirs = "^1.4.4"
asyncpg = "^0.23.0"
uvloop = "^0.15.2"
desert = "^2020.11.18"
numpy = "^1.21.2"
typeguard = "^2.12.1"
gino = "^1.0.1"
quart = "^0.16.3"
marshmallow-sqlalchemy = "^0.27.0"
strictyaml = "^1.6.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"
black = "^22.1.0"
types-all = "^1.0.0"
[tool.poetry.scripts]
plex-playlist = "playlist.__main__:main"
[tool.black]
line-length = 88
target-version = ["py310"]
[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"