From 60c51af7fafa6291cf0583d3343a5cc0a2de9fc3 Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Tue, 25 Jul 2023 01:45:06 -0700 Subject: [PATCH] add aiohttp to pyproject and bump ver --- pyproject.toml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b44c92a..603300e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "pyarr" -version = "5.1.1" -description = "Synchronous Sonarr, Radarr, Lidarr and Readarr API's for Python" +version = "5.2.1" +description = "Sync and async Sonarr, Radarr, Lidarr and Readarr API's for Python" authors = ["Steven Marks "] license = "MIT" readme = "README.md" @@ -19,21 +19,19 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", - "Topic :: Software Development :: Libraries :: Python Modules" -] -packages = [ - {include = "pyarr"}, - {include = "pyarr/py.typed"} + "Topic :: Software Development :: Libraries :: Python Modules", ] +packages = [{ include = "pyarr" }, { include = "pyarr/py.typed" }] [tool.poetry.dependencies] python = "^3.9" requests = "^2.28.2" types-requests = "^2.28.11.17" overrides = "^7.3.1" +aiohttp = "^3.8.0" [tool.poetry.group.dev.dependencies] -black = {version = "^22.12.0", allow-prereleases = true} +black = { version = "^22.12.0", allow-prereleases = true } flake8 = "^3.9.2" isort = "^5.12.0" mypy = "^0.910" @@ -92,13 +90,8 @@ disallow_untyped_defs = true profile = "black" # will group `import x` and `from x import` of the same module. force_sort_within_sections = true -known_first_party = [ - "pyarr", - "tests", -] -forced_separate = [ - "tests", -] +known_first_party = ["pyarr", "tests"] +forced_separate = ["tests"] skip = [".cache", ".nox"] combine_as_imports = true @@ -120,7 +113,14 @@ ignore-nested-functions = false ignore-nested-classes = true ignore-setters = false fail-under = 100 -exclude = ["setup.py", "sphinx-docs", "build", ".devcontainer", ".nox", ".cache"] +exclude = [ + "setup.py", + "sphinx-docs", + "build", + ".devcontainer", + ".nox", + ".cache", +] ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"] verbose = 0 quiet = false