Skip to content

Commit

Permalink
add aiohttp to pyproject and bump ver
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Jul 25, 2023
1 parent 3b566e6 commit 60c51af
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
readme = "README.md"
Expand All @@ -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"
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 60c51af

Please sign in to comment.