diff --git a/flacinfo b/flacinfo.py similarity index 100% rename from flacinfo rename to flacinfo.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ba372a4 --- /dev/null +++ b/setup.py @@ -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', + ] + } + )