]> git.parisson.com Git - timeside-diadems.git/commitdiff
cleanup
authorGuillaume Pellerin <yomguy@parisson.com>
Mon, 15 Sep 2014 14:36:59 +0000 (16:36 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Mon, 15 Sep 2014 14:36:59 +0000 (16:36 +0200)
setup.py

index 616cbc8a3757471396b6e81eee54fb02820f7ae4..72a28465ba09a61531e4816513b3719403f05d68 100755 (executable)
--- 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},
     )