Files
wavinfo/setup.py
Jamie Hardt 3f3fbc7632 Update setup.py
Added dependency to setup
2019-06-23 22:27:44 -07:00

23 lines
800 B
Python

from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='wavinfo',
version='1.1',
author='Jamie Hardt',
author_email='jamiehardt@me.com',
description='Probe WAVE Files for iXML, Broadcast-WAVE and other metadata.',
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.5",
"Programming Language :: Python :: 3.6"],
packages=['wavinfo'],
install_requires=['lxml']
)