move plugin out of __init__.py
[ckanext-datagovau.git] / setup.py
blob:a/setup.py -> blob:b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -1,34 +1,27 @@
 from setuptools import setup, find_packages
-import sys, os
 
 version = '0.1'
 
 setup(
-	name='ckanext-exampletheme',
+	name='ckanext-datagovau',
 	version=version,
-	description="Example themeb for customising CKAN",
-	long_description="""\
-	""",
+	description='Extension for customising CKAN for data.gov.au',
+	long_description='',
 	classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
 	keywords='',
-	author='Seb Bacon',
-	author_email='seb.bacon@gmail.com',
+	author='Alex Sadleir',
+	author_email='alex.sadleir@linkdigital.com.au',
 	url='',
 	license='',
 	packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
-	namespace_packages=['ckanext', 'ckanext.exampletheme'],
+	namespace_packages=['ckanext', 'ckanext.datagovau'],
 	include_package_data=True,
 	zip_safe=False,
-	install_requires=[
-		# -*- Extra requirements: -*-
-	],
+	install_requires=[],
 	entry_points=\
 	"""
         [ckan.plugins]
-	exampletheme=ckanext.exampletheme.plugin:ExampleThemePlugin
-
-        [ckan.forms]
-        example_form = ckanext.exampletheme.package_form:get_example_fieldset
+	datagovau=ckanext.datagovau.plugin:DataGovAuPlugin
 	""",
 )