flacinfo/setup.py

27 lines
706 B
Python
Raw Permalink Normal View History

2018-01-18 23:55:01 +01:00
""" Setuptools setup file for flacinfo """
from setuptools import setup
setup(
2021-03-21 23:18:36 +01:00
name="flacinfo",
version="1.0.0b1",
description="A script analoguous to `mp3info`, but for flac files",
url="https://git.tobast.fr/tobast/flacinfo",
author="Théophile `tobast` Bastian",
2018-01-18 23:55:01 +01:00
classifiers=[
2021-03-21 23:18:36 +01:00
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Programming Language :: Python :: 3",
2018-01-18 23:55:01 +01:00
],
2021-03-21 23:18:36 +01:00
python_requires=">=3",
keywords="flac metadata",
py_modules=["flacinfo"],
2018-01-18 23:55:01 +01:00
entry_points={
2021-03-21 23:18:36 +01:00
"console_scripts": [
"flacinfo = flacinfo:main",
2018-01-18 23:55:01 +01:00
]
2021-03-21 23:18:36 +01:00
},
)