From d23965e0d118b65929278543cc33209becd92ddc Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 31 May 2011 13:47:22 +0000 Subject: [PATCH] fix shout install --- __init__.py | 2 -- setup.py | 4 ++-- {shout-python => shout}/COPYING | 0 {shout-python => shout}/INSTALL | 0 {shout-python => shout}/MANIFEST | 0 {shout-python => shout}/README | 0 {shout-python => shout}/example.py | 0 {shout-python => shout}/setup.py | 0 {shout-python => shout}/shout.c | 0 9 files changed, 2 insertions(+), 4 deletions(-) rename {shout-python => shout}/COPYING (100%) rename {shout-python => shout}/INSTALL (100%) rename {shout-python => shout}/MANIFEST (100%) rename {shout-python => shout}/README (100%) rename {shout-python => shout}/example.py (100%) rename {shout-python => shout}/setup.py (100%) rename {shout-python => shout}/shout.c (100%) diff --git a/__init__.py b/__init__.py index 87b3ced..e69de29 100644 --- a/__init__.py +++ b/__init__.py @@ -1,2 +0,0 @@ -from deefuzzer import * - diff --git a/setup.py b/setup.py index a632e0d..6ef5fc0 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ METADATA = dict( url='http://svn.parisson.org/deefuzzer', keywords='audio video streaming broadcast shout', install_requires = ['setuptools','tinyurl'], - packages=['deefuzzer'], + packages=['deefuzzer', 'shout'], include_package_data = True, scripts=['scripts/deefuzzer'], classifiers = ['Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Players',], @@ -39,7 +39,7 @@ def Main(): if __name__ == '__main__': - os.chdir('shout-python') + os.chdir('shout') os.system('python setup.py install') os.chdir('..') Main() diff --git a/shout-python/COPYING b/shout/COPYING similarity index 100% rename from shout-python/COPYING rename to shout/COPYING diff --git a/shout-python/INSTALL b/shout/INSTALL similarity index 100% rename from shout-python/INSTALL rename to shout/INSTALL diff --git a/shout-python/MANIFEST b/shout/MANIFEST similarity index 100% rename from shout-python/MANIFEST rename to shout/MANIFEST diff --git a/shout-python/README b/shout/README similarity index 100% rename from shout-python/README rename to shout/README diff --git a/shout-python/example.py b/shout/example.py similarity index 100% rename from shout-python/example.py rename to shout/example.py diff --git a/shout-python/setup.py b/shout/setup.py similarity index 100% rename from shout-python/setup.py rename to shout/setup.py diff --git a/shout-python/shout.c b/shout/shout.c similarity index 100% rename from shout-python/shout.c rename to shout/shout.c -- 2.39.5