forked from mr-rigden/pyloudness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 809 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
from codecs import open
from os import path
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='pyloudness',
version='1.0',
description='Find out how loud that file is',
long_description=long_description,
url='https://github.com/jrigden/pyloudness',
author='Jason Rigden',
author_email='jasonrigden@gmail.com',
keywords='loudness audio ebu r128',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'License :: OSI Approved :: MIT License',
],
packages=['pyloudness'],
zip_safe=False)