--- a/setup.py +++ b/setup.py @@ -1,14 +1,12 @@ from setuptools import setup, find_packages -import sys, os -version = '0.1' +version = '0.2' setup( name='ckanext-example', version=version, - description="Example extension for customising CKAN", - long_description="""\ - """, + description='Example extension for customising CKAN', + long_description='', classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Seb Bacon', @@ -19,16 +17,19 @@ namespace_packages=['ckanext', 'ckanext.example'], include_package_data=True, zip_safe=False, - install_requires=[ - # -*- Extra requirements: -*- - ], + install_requires=[], entry_points=\ """ [ckan.plugins] - example=ckanext.example.plugin:ExamplePlugin + example=ckanext.example.plugin:ExamplePlugin + example_datasetform=ckanext.example.forms:ExampleDatasetForm + example_groupform=ckanext.example.forms:ExampleGroupForm [ckan.forms] example_form = ckanext.example.package_form:get_example_fieldset + + [paste.paster_command] + example=ckanext.example.commands:ExampleCommand """, )