-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies"]
name = "MusicUtils"
description = "Command-line music manipulation utilities"
version = "0.3"
requires-python = ">= 3.10"
authors = [
{ name = "Eric Koldinger", email="kolding@washington.edu" }
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
]
[project.scripts]
tagit = "MusicUtils.tagit:run"
tagedit = "MusicUtils.tagedit:run"
reorg = "MusicUtils.reorg:run"
copyTags = "MusicUtils.copyTags:run"
aconvert = "MusicUtils.aconvert:main"
checkConsistency = "MusicUtils.checkConsistency:main"
[project.urls]
Repository = "https://github.com/koldinger/MusicUtils"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}