Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
rshk committed Oct 18, 2013
1 parent 5ee2ea1 commit 7ab8bd9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -5,7 +5,8 @@
use_setuptools()
from setuptools import setup, find_packages

from ckan import __version__, __description__, __long_description__, __license__
from ckan import (__version__, __description__, __long_description__,
__license__)

setup(
name='ckan',
Expand All @@ -16,7 +17,7 @@
url='http://ckan.org/',
description=__description__,
keywords='data packaging component tool server',
long_description =__long_description__,
long_description=__long_description__,
zip_safe=False,
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ckanext', 'ckanext.stats'],
Expand All @@ -28,7 +29,7 @@
'migration/tests/test_dumps/*',
'migration/versions/*',
]},
message_extractors = {
message_extractors={
'ckan': [
('**.py', 'python', None),
('**.js', 'javascript', None),
Expand Down

0 comments on commit 7ab8bd9

Please sign in to comment.