From 82005f2b49221c704041f32dcaf7f2fec2c99272 Mon Sep 17 00:00:00 2001 From: yomguy Date: Mon, 30 Jul 2012 00:34:00 +0200 Subject: [PATCH] fiw manifest --- MANIFEST.in | 4 +++- setup.py | 15 +++++++++++---- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 684b8a7..4da2590 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 * diff --git a/setup.py b/setup.py index 14e5248..56d7eff 100644 --- 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, -- 2.39.5