Added a sample IDatasetForm to show how we can implement a custom form from a plugin.
[ckanext-datagovau.git] / setup.py
blob:a/setup.py -> blob:b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 import sys, os
 
-version = '0.1'
+version = '0.2'
 
 setup(
 	name='ckanext-example',
@@ -25,7 +25,8 @@
 	entry_points=\
 	"""
         [ckan.plugins]
-	example=ckanext.example.plugin:ExamplePlugin
+	    example=ckanext.example.plugin:ExamplePlugin
+        example_package=ckanext.example.controller_plugin:ExamplePackageController
 
         [ckan.forms]
         example_form = ckanext.example.package_form:get_example_fieldset