forked from bvanpeski/dnuos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.7 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
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dnuos"
version = "2.0.0"
description = "A tool for creating lists of music collections"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-2.0-or-later"}
authors = [
{name = "Mattias Päivärinta", email = "pejve@vasteras2.net"},
{name = "Brodie Rao", email = "brodie@bitheap.org"}
]
keywords = ["music", "collection", "list", "metadata", "mp3", "audiolist", "oidua"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
]
[project.urls]
Homepage = "https://github.com/brodie/dnuos"
Repository = "https://github.com/brodie/dnuos"
"Bug Tracker" = "https://github.com/brodie/dnuos/issues"
Download = "https://github.com/brodie/dnuos/releases"
[project.scripts]
dnuos = "dnuos:main"
[tool.setuptools]
packages = ["dnuos", "dnuos.cache", "dnuos.id3", "dnuos.output"]
include-package-data = true
[tool.setuptools.package-data]
dnuos = ["locale/*/LC_MESSAGES/*.mo"]
# Build translations with: python3 build_translations.py
# This should be run before building the package to ensure .mo files are included