1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-mpd2"
version = "3.1.2"
description = "A Python MPD client library"
readme = "README.rst"
authors = [
{name = "Joerg Thalheim", email = "joerg@thalheim.io"},
]
maintainers = [
{name = "Joerg Thalheim", email = "joerg@thalheim.io"},
]
license = {text = "GNU Lesser General Public License v3 (LGPLv3)"}
keywords = ["mpd"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = []
[project.optional-dependencies]
twisted = ["Twisted"]
test = [
"tox",
"Twisted",
]
[project.urls]
Homepage = "https://github.com/Mic92/python-mpd2"
Repository = "https://github.com/Mic92/python-mpd2"
Issues = "https://github.com/Mic92/python-mpd2/issues"
[tool.setuptools]
packages = ["mpd"]
zip-safe = true
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.mypy]
python_version = "3.10"
pretty = true
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = "setuptools.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "twisted.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "mpd.tests.*"
disable_error_code = ["attr-defined", "union-attr"]
[tool.ruff]
target-version = "py310"
line-length = 88
|