2011-04-11 17:53:47 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import sys, os
|
|
|
|
|
2011-09-26 11:27:20 +02:00
|
|
|
version = '0.2'
|
2011-04-11 17:53:47 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='ckanext-spatial',
|
|
|
|
version=version,
|
|
|
|
description="Geo-related plugins for CKAN",
|
|
|
|
long_description="""\
|
|
|
|
""",
|
|
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
keywords='',
|
|
|
|
author='Open Knowledge Foundation',
|
|
|
|
author_email='info@okfn.org',
|
|
|
|
url='http://okfn.org',
|
|
|
|
license='AGPL',
|
|
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
|
|
namespace_packages=['ckanext', 'ckanext.spatial'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=[
|
|
|
|
# -*- Extra requirements: -*-
|
|
|
|
],
|
|
|
|
entry_points=\
|
|
|
|
"""
|
2012-10-17 17:59:02 +02:00
|
|
|
[console_scripts]
|
|
|
|
cswinfo = ckanext.spatial.commands.cswinfo:cswinfo
|
|
|
|
|
2011-04-11 19:04:28 +02:00
|
|
|
[ckan.plugins]
|
2012-02-21 13:00:47 +01:00
|
|
|
spatial_metadata=ckanext.spatial.plugin:SpatialMetadata
|
|
|
|
spatial_query=ckanext.spatial.plugin:SpatialQuery
|
|
|
|
spatial_query_widget=ckanext.spatial.plugin:SpatialQueryWidget
|
|
|
|
wms_preview=ckanext.spatial.nongeos_plugin:WMSPreview
|
2012-10-17 17:59:02 +02:00
|
|
|
cswserver=ckanext.spatial.plugin:CatalogueServiceWeb
|
2012-10-19 12:19:01 +02:00
|
|
|
spatial_harvest_metadata_api=ckanext.spatial.plugin:HarvestMetadataApi
|
2013-02-12 17:13:35 +01:00
|
|
|
|
2013-02-12 19:29:30 +01:00
|
|
|
csw_harvester=ckanext.spatial.harvesters:CSWHarvester
|
|
|
|
waf_harvester=ckanext.spatial.harvesters:WAFHarvester
|
|
|
|
doc_harvester=ckanext.spatial.harvesters:DocHarvester
|
|
|
|
|
2013-02-12 17:13:35 +01:00
|
|
|
# Legacy harvesters
|
|
|
|
gemini_csw_harvester=ckanext.spatial.harvesters.gemini:GeminiCswHarvester
|
|
|
|
gemini_doc_harvester=ckanext.spatial.harvesters.gemini:GeminiDocHarvester
|
|
|
|
gemini_waf_harvester=ckanext.spatial.harvesters.gemini:GeminiWafHarvester
|
2012-10-17 17:59:02 +02:00
|
|
|
|
2011-04-11 19:04:28 +02:00
|
|
|
[paste.paster_command]
|
2011-04-13 13:05:59 +02:00
|
|
|
spatial=ckanext.spatial.commands.spatial:Spatial
|
2012-10-19 19:20:32 +02:00
|
|
|
validation=ckanext.spatial.commands.validation:Validation
|
2011-04-11 17:53:47 +02:00
|
|
|
""",
|
|
|
|
)
|