forked from taschenb/python-qobuz
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (49 loc) · 1.55 KB
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
#
# pyproject.toml for LrViewer application
#
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-qobuz"
dynamic = ["version", "readme"]
requires-python = ">=3.11"
dependencies = [
"requests==2.32.3",
"cryptography==47.0.0",
]
description = "Python library for Qobuz API"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [
{name = "fdenivac", email = "fdenivac@gmail.com"},
]
maintainers = [
{name = "fdenivac", email = "fdenivac@gmail.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Sound/Audio",
]
[tool.setuptools.dynamic]
version = {attr = "qobuz._version.__version__"}
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
where = ["src"]
# exclude = ["obsolete", "build"]
namespaces = true
[project.urls]
"Homepage" = "https://github.com/fdenivac/python-qobuz"
"Bug Reports" = "https://github.com/fdenivac/python-qobuz/issues"
"Source" = "https://github.com/fdenivac/python-qobuz"