mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 04:20:52 +00:00
58 lines
1.2 KiB
TOML
58 lines
1.2 KiB
TOML
[project]
|
|
name = "plex-api-client"
|
|
version = "0.25.0"
|
|
description = "Python Client SDK Generated by Speakeasy"
|
|
authors = [{ name = "Speakeasy" },]
|
|
readme = "README-PYPI.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"eval-type-backport >=0.2.0",
|
|
"httpx >=0.28.1",
|
|
"pydantic >=2.10.3",
|
|
"python-dateutil >=2.8.2",
|
|
"typing-inspection >=0.4.0",
|
|
]
|
|
|
|
[tool.poetry]
|
|
repository = "https://github.com/LukeHagar/plexpy.git"
|
|
packages = [
|
|
{ include = "plex_api_client", from = "src" }
|
|
]
|
|
include = ["py.typed", "src/plex_api_client/py.typed"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed", "src/plex_api_client/py.typed"]
|
|
|
|
[virtualenvs]
|
|
in-project = true
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
mypy = "==1.14.1"
|
|
pylint = "==3.2.3"
|
|
types-python-dateutil = "^2.9.0.20240316"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
pythonpath = ["src"]
|
|
|
|
[tool.mypy]
|
|
disable_error_code = "misc"
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "typing_inspect"
|
|
ignore_missing_imports = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "jsonpath"
|
|
ignore_missing_imports = true
|
|
|
|
[tool.pyright]
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
|
|
|