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