Add a setup.py packaging file

This commit is contained in:
Théophile Bastian 2018-01-18 23:55:01 +01:00
parent d3f1c638bd
commit 861874d5db
2 changed files with 26 additions and 0 deletions

26
setup.py Normal file
View File

@ -0,0 +1,26 @@
""" Setuptools setup file for flacinfo """
from setuptools import setup
setup(
name='flacinfo',
version='1.0.0b1',
description='A script analoguous to `mp3info`, but for flac files',
url='https://github.com/tobast/flacinfo',
author='Théophile `tobast` Bastian',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Programming Language :: Python :: 3',
],
python_requires='>=3',
keywords='flac metadata',
py_modules=['flacinfo'],
entry_points={
'console_scripts': [
'flacinfo = flacinfo:main',
]
}
)