-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 835 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 835 Bytes
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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling >= 1.26"]
[project]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"py-opensonic == 7.0.2",
"tqdm == 4.67.1",
"python-magic == 0.4.27",
"argcomplete == 3.6.3",
]
description = "a little command-line utility made to help download all of a user's music from an OpenSubsonic server"
license = "GPL-3.0-or-later"
license-files = ["LICENSE.md"]
name = "downsonic"
readme = "README.md"
requires-python = ">=3.13.9"
version = "0.0.3"
[[project.authors]]
email = "person@dandelion.computer"
name = "andrew sòlanto"
[project.urls]
Homepage = "https://github.com/pypa/sampleproject"
Issues = "https://github.com/pypa/sampleproject/issues"
[project.scripts]
downsonic = "downsonic.main:main"