[forms, commands] move code for creating example vocab to a paster command
[ckanext-datagovau.git] / setup.py
blob:a/setup.py -> blob:b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -17,9 +17,7 @@
 	namespace_packages=['ckanext', 'ckanext.example'],
 	include_package_data=True,
 	zip_safe=False,
-	install_requires=[
-		# -*- Extra requirements: -*-
-	],
+	install_requires=[],
 	entry_points=\
 	"""
         [ckan.plugins]
@@ -29,6 +27,9 @@
 
         [ckan.forms]
         example_form = ckanext.example.package_form:get_example_fieldset
+
+        [paste.paster_command]
+        example=ckanext.example.commands:ExampleCommand
 	""",
 )