From 6562a46a4a33d49acc3b250a4e91e9a5389400a1 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 15 Sep 2014 16:36:59 +0200 Subject: [PATCH] cleanup --- setup.py | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/setup.py b/setup.py index 616cbc8..72a2846 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,12 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from setuptools import setup, find_packages + +from setuptools import setup import sys from setuptools.command.test import test as TestCommand + # Pytest class PyTest(TestCommand): def finalize_options(self): @@ -19,7 +21,6 @@ class PyTest(TestCommand): sys.exit(errno) - CLASSIFIERS = [ 'Intended Audience :: Science/Research', 'Intended Audience :: Developers', @@ -38,14 +39,14 @@ CLASSIFIERS = [ KEYWORDS = 'audio analysis features extraction MIR transcoding graph visualize plot HTML5 interactive metadata player' setup( - name = "TimeSide", - url='https://github.com/yomguy/TimeSide/', - description = "open web audio processing framework", - long_description = open('README.rst').read(), - author = "Guillaume Pellerin, Paul Brossier, Thomas Fillon, Riccardo Zaccarelli, Olivier Guilyardi", - author_email = "yomguy@parisson.com, piem@piem.org, thomas@parisson.com, riccardo.zaccarelli@gmail.com, olivier@samalyse.com", - version = '0.5.7', - install_requires = [ + name='TimeSide', + url='https://github.com/yomguy/TimeSide/', + description="open web audio processing framework", + long_description=open('README.rst').read(), + author="Guillaume Pellerin, Paul Brossier, Thomas Fillon, Riccardo Zaccarelli, Olivier Guilyardi", + author_email="yomguy@parisson.com, piem@piem.org, thomas@parisson.com, riccardo.zaccarelli@gmail.com, olivier@samalyse.com", + version='0.5.7', + install_requires=[ 'numpy', 'mutagen', 'pillow', @@ -62,14 +63,14 @@ setup( 'traits', 'networkx' ], - platforms=['OS Independent'], - license='Gnu Public License V2', - classifiers = CLASSIFIERS, - keywords = KEYWORDS, - packages = ['timeside'], - include_package_data = True, - zip_safe = False, - scripts=['scripts/timeside-waveforms', 'scripts/timeside-launch'], - tests_require=['pytest'], - cmdclass = {'test': PyTest}, + platforms=['OS Independent'], + license='Gnu Public License V2', + classifiers=CLASSIFIERS, + keywords=KEYWORDS, + packages=['timeside'], + include_package_data=True, + zip_safe=False, + scripts=['scripts/timeside-waveforms', 'scripts/timeside-launch'], + tests_require=['pytest'], + cmdclass={'test': PyTest}, ) -- 2.39.5