Skip to content

Commit

Permalink
pure style refactoring of setup.py. Pylint score went from 5/10 to 10…
Browse files Browse the repository at this point in the history
…/10.
  • Loading branch information
Stephane Odul committed Sep 6, 2012
1 parent 3b35bb0 commit f064784
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions console/org.linkedin.glu.console-cli/setup.py
Expand Up @@ -14,20 +14,22 @@
# the License.
#

import os
"""Setup script for Glu console-cli."""

from setuptools import setup


setup(
name = "gluconsole",
version = "0.1",
author = "Manish Dubey",
author_email = "mdubey@linkedin.com",
description = "GLU REST API",
install_requires = ['restkit', 'progressbar'],
packages = ['gluconsole'],
scripts = ['src/cmdline/resources/bin/console-cli.py'],
name = 'gluconsole',
version = '0.1',
author = 'Manish Dubey',
author_email = 'mdubey@linkedin.com',
description = 'GLU REST API',
install_requires = ['restkit', 'progressbar'],
packages = ['gluconsole'],
scripts = ['src/cmdline/resources/bin/console-cli.py'],

package_dir = {
'gluconsole': 'src/cmdline/resources/lib/python/gluconsole'
},
package_dir = {
'gluconsole': 'src/cmdline/resources/lib/python/gluconsole'
}
)

0 comments on commit f064784

Please sign in to comment.