]> git.parisson.com Git - deefuzzer.git/commitdiff
add pycurl
authoryomguy <yomguy@parisson.com>
Wed, 11 Jan 2012 14:04:29 +0000 (15:04 +0100)
committeryomguy <yomguy@parisson.com>
Wed, 11 Jan 2012 14:04:29 +0000 (15:04 +0100)
setup.py

index a0069b0ba4b9101c570510dc049359bfeb435e07..5b1f617084c9ab7b4011a2b2f014f182cb30ef99 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -7,22 +7,22 @@ import os
 
 __version__ = '0.6.1'
 __author__ = 'yomguy@parisson.com'
-    
+
 # The base package metadata to be used by both distutils and setuptools
 METADATA = dict(
   name = "DeeFuzzer",
   version = __version__,
   py_modules = ['deefuzzer'],
   description='an easy and instant media streaming tool',
-  author='Guillaume Pellerin', 
+  author='Guillaume Pellerin',
   author_email='yomguy@parisson.com',
   license='CeCILL',
   url='http://svn.parisson.org/deefuzzer',
   keywords='audio video streaming broadcast shout',
-  install_requires = ['setuptools', 'tinyurl', 'python-shout', 'python-twitter', 'mutagen', 'pyliblo'],
-  packages=['deefuzzer', 'deefuzzer.tools'], 
+  install_requires = ['setuptools', 'tinyurl', 'python-shout', 'python-twitter', 'mutagen', 'pyliblo', 'pycurl'],
+  packages=['deefuzzer', 'deefuzzer.tools'],
   include_package_data = True,
-  scripts=['scripts/deefuzzer'], 
+  scripts=['scripts/deefuzzer'],
   classifiers = ['Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Players',],
   long_description=open('README.rst').read(),
 )
@@ -35,6 +35,6 @@ def Main():
   except ImportError:
     import distutils.core
     distutils.core.setup(**METADATA)
-    
+
 if __name__ == '__main__':
     Main()