mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2025-12-31 17:00:41 +00:00
22 lines
782 B
Python
22 lines
782 B
Python
from setuptools import setup
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(name='wavinfo',
|
|
version='1.0',
|
|
author='Jamie Hardt',
|
|
author_email='jamiehardt@me.com',
|
|
description='WAVE sound file metadata parser.',
|
|
long_description_content_type="text/markdown",
|
|
long_description=long_description,
|
|
url='https://github.com/iluvcapra/wavinfo',
|
|
classifiers=['Development Status :: 5 - Production/Stable',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Topic :: Multimedia',
|
|
'Topic :: Multimedia :: Sound/Audio',
|
|
"Programming Language :: Python :: 3.4",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6"],
|
|
packages=['wavinfo'])
|