Files
mfbatch/pyproject.toml
Jamie Hardt ac00f93a8d Update pyproject.toml
Nudged version to 0.5.0
2024-10-16 14:10:49 -07:00

33 lines
935 B
TOML

[tool.poetry]
name = "mfbatch"
version = "0.5.0"
description = "MetaFlac batch editor"
authors = ["Jamie Hardt <jamiehardt@me.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/iluvcapra/mfbatch"
repository = "https://github.com/iluvcapra/mfbatch.git"
keywords = ['flac', 'metadata', 'audio', 'multimedia', 'console', 'scripting']
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Sound/Audio :: Editors',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
]
[tool.poetry.dependencies]
python = "^3.9"
tqdm = "^4.66.4"
# anyreadline = "^0.1.1"
[tool.poetry.scripts]
mfbatch = 'mfbatch.__main__:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"