Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Perfilov committed Jan 25, 2017
1 parent 385f5a2 commit 177c9d8
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@
version = '0.1'

setup(
name='ckanext-datajson',
version=version,
description="CKAN extension to generate /data.json",
long_description="""\
name='ckanext-datajson',
version=version,
description="CKAN extension to generate /data.json",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='U.S. Department of Health & Human Services',
author_email='',
url='http://www.healthdata.gov',
license='Public Domain',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.datajson'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points=\
"""
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='U.S. Department of Health & Human Services',
author_email='',
url='http://www.healthdata.gov',
license='Public Domain',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.datajson'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points= \
"""
[ckan.plugins]
datajson=ckanext.datajson:DataJsonPlugin
datajson_harvest=ckanext.datajson:DataJsonHarvester
cmsdatanav_harvest=ckanext.datajson:CmsDataNavigatorHarvester
""",
datajson=ckanext.datajson.plugin:DataJsonPlugin
datajson_harvest=ckanext.datajson.plugin:DataJsonHarvester
cmsdatanav_harvest=ckanext.datajson.plugin:CmsDataNavigatorHarvester
""",
)

1 comment on commit 177c9d8

@camfindlay
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems that adding in .plugin here causes some issues - see https://lists.okfn.org/pipermail/ckan-dev/2017-February/010805.html

Please sign in to comment.