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=\
|
|
|
|
"""
|
2011-04-11 19:04:28 +02:00
|
|
|
[ckan.plugins]
|
2011-04-11 17:53:47 +02:00
|
|
|
# Add plugins here, eg
|
2011-04-11 18:23:27 +02:00
|
|
|
wms_preview=ckanext.spatial.plugin:WMSPreview
|
2011-04-11 19:04:28 +02:00
|
|
|
spatial_query=ckanext.spatial.plugin:SpatialQuery
|
2011-09-30 12:33:36 +02:00
|
|
|
dataset_extent_map=ckanext.spatial.plugin:DatasetExtentMap
|
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
|
2011-04-11 17:53:47 +02:00
|
|
|
""",
|
|
|
|
)
|