Improving project structure with Hyper Python.
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
@@ -1,25 +1,52 @@
|
||||
[tool.poetry]
|
||||
name = "playlist"
|
||||
name = "plex-playlist"
|
||||
version = "0.1.0"
|
||||
description = "Playlist generator for Plex music"
|
||||
description = "Automated Daily Playlist Generator for Plex Music"
|
||||
authors = ["Cliff Hill <xlorep@darkhelm.org>"]
|
||||
license = "MIT"
|
||||
readme = "README.rst"
|
||||
homepage = "https://github.com/xlorepdarkhelm/plex-playlist"
|
||||
repository = "https://github.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.black]
|
||||
line-length = 88
|
||||
target-version = ["py38"]
|
||||
[tool.poetry.urls]
|
||||
Changelog = "https://github.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"
|
||||
marshmallow-dataclass = "^8.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"
|
||||
@@ -65,6 +92,19 @@ pytest-cov = "^2.11.1"
|
||||
yamllint = "^1.26.0"
|
||||
rstcheck = "^3.3.1"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
plex-playlist = "playlist.__main__:main"
|
||||
|
||||
[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"]
|
||||
|
||||
Reference in New Issue
Block a user