]> git.parisson.com Git - timeside.git/commitdiff
fiw manifest
authoryomguy <yomguy@parisson.com>
Sun, 29 Jul 2012 22:34:00 +0000 (00:34 +0200)
committeryomguy <yomguy@parisson.com>
Sun, 29 Jul 2012 22:34:00 +0000 (00:34 +0200)
MANIFEST.in
setup.py

index 684b8a75902444a33accf079c029313afb9d5aad..4da2590319ec24bb8d11144f908891e5bd6381b5 100644 (file)
@@ -2,9 +2,11 @@ include AUTHORS
 include LICENSE
 include README.rst
 include INSTALL.rst
-recursive-include timeside/tests *
+
+recursive-include tests *
 recursive-include timeside/tools *
 recursive-include timeside/doc *
+
 recursive-exclude * *.pyc
 recursive-exclude dist *
 recursive-exclude build *
index 14e5248789456f630bf4b3ec8495264c989a80ac..56d7eff3354429ef8c71960a6a1a3aa607a549c5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,9 +2,16 @@
 # -*- coding: utf-8 -*-
 from setuptools import setup, find_packages
 import os
-import timeside
 
-CLASSIFIERS = ['Intended Audience :: Science/Research', 'Programming Language :: Python', 'Programming Language :: JavaScript', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Analysis', 'Topic :: Multimedia :: Sound/Audio :: Players', 'Topic :: Scientific/Engineering :: Information Analysis', ],
+CLASSIFIERS = [
+    'Intended Audience :: Science/Research',
+    'Programming Language :: Python',
+    'Programming Language :: JavaScript',
+    'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
+    'Topic :: Multimedia :: Sound/Audio',
+    'Topic :: Multimedia :: Sound/Audio :: Analysis',
+    'Topic :: Multimedia :: Sound/Audio :: Players',
+    'Topic :: Scientific/Engineering :: Information Analysis', ]
 
 KEYWORDS = 'audio analyze transcode graph player metadata'
 
@@ -15,7 +22,7 @@ setup(
   long_description = open('README.rst').read(),
   author = ["Guillaume Pellerin", "Olivier Guilyardi", "Riccardo Zaccarelli", "Paul Brossier"],
   author_email = ["yomguy@parisson.com","olivier@samalyse.com", "riccardo.zaccarelli@gmail.com", "piem@piem.org"],
-  version = timeside.__version__,
+  version = '0.3.2',
   install_requires = [
            'setuptools',
                'numpy',
@@ -24,7 +31,7 @@ setup(
   platforms=['OS Independent'],
   license='Gnu Public License V2',
   classifiers = CLASSIFIERS,
-  keywords = KEYWORDS, 
+  keywords = KEYWORDS,
   packages = find_packages(),
   include_package_data = True,
   zip_safe = False,