-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1.11 KB
/
pyproject.toml
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
# SPDX-FileCopyrightText: 2023 kaliko <[email protected]>
# SPDX-License-Identifier: LGPL-3.0-or-later
[project]
name = "python-musicpd"
keywords = ["mpd", "Music Player Daemon"]
description = "An MPD (Music Player Daemon) client library written in pure Python."
authors = [
{ name="Kaliko Jack", email="[email protected]" },
]
license = {file = "LICENSE.txt"}
readme = "README.rst"
requires-python = ">=3.6"
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 :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.optional-dependencies]
sphinx = ["Sphinx>=5.3.0"]
[project.urls]
"Homepage" = "https://kaliko.me/python-musicpd/"
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["musicpd"]
[tool.setuptools.dynamic]
version = {attr = "musicpd.VERSION"}