From: yomguy Date: Thu, 19 Apr 2012 08:19:48 +0000 (+0200) Subject: fix setup X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=fe81bfa7a6b63f41cdc5e315ea0f345d7f53aa5b;p=deefuzzer.git fix setup --- diff --git a/setup.py b/setup.py index d6d9394..12ddc0e 100644 --- a/setup.py +++ b/setup.py @@ -4,12 +4,11 @@ '''The setup and build script for the library.''' from setuptools import setup, find_packages -import os import deefuzzer -CLASSIFIERS = ['Programming Language :: Python', - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', - 'Topic :: Multimedia :: Sound/Audio', +CLASSIFIERS = ['Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Players',] setup( @@ -21,12 +20,12 @@ setup( author_email = "yomguy@parisson.com", version = deefuzzer.__version__, install_requires = [ - 'setuptools', - 'tinyurl', - 'python-shout', - 'python-twitter', - 'mutagen', - 'pyliblo', + 'setuptools', + 'tinyurl', + 'python-shout', + 'python-twitter', + 'mutagen', + 'pyliblo', 'pycurl', ], platforms=['OS Independent'],