nicole/pyproject.toml

35 lines
741 B
TOML
Raw Normal View History

2024-05-02 23:34:38 +02:00
[build-system]
2024-05-03 22:36:57 +02:00
requires = ["setuptools"]
2024-05-02 23:34:38 +02:00
2024-05-03 22:36:57 +02:00
[project]
2024-05-02 23:34:38 +02:00
name = "nicole"
version = "2.1.0"
description = "Write lyrics from genius or azlyrics.com into a mp3-tag"
2024-05-03 22:36:57 +02:00
authors = [
{ name = "Matthias Quintern", email = "matthias.quintern@posteo.de" }
]
requires-python = ">=3.7"
2024-05-02 23:34:38 +02:00
2024-05-03 22:36:57 +02:00
license = { file = "LICENSE" }
dependencies = [
"mutagen",
"beautifulsoup4"
]
2024-05-02 23:34:38 +02:00
2024-05-03 22:36:57 +02:00
classifiers = [
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.urls]
repository = "https://github.com/MatthiasQuintern/nicole.git"
[project.scripts]
nicole = "nicole.nicole:main"
2024-05-02 23:34:38 +02:00
[tool.setuptools.packages.find]
2024-05-03 22:36:57 +02:00
where = ["."]