-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (33 loc) · 1.12 KB
/
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
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name='rganalysis',
version='3.6',
description='A script to add ReplayGain tags to your music library',
url='https://github.com/DarwinAwardWinner/rganalysis',
author='Ryan C. Thompson',
author_email='[email protected]',
license='GPLv2+',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
],
keywords='audio replaygain',
packages=find_packages(exclude=['scripts']),
install_requires=[
'mutagen',
'parse',
'plac',
],
extras_require = {
'progress_bars': ['tqdm'],
'audiotools_backend': ['audiotools'],
'bs1770gain_backend': ['lxml'],
},
scripts=['scripts/rganalysis',],
)