2014-03-07 13:28:08 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import sys, os
|
|
|
|
|
2015-03-24 11:16:58 +01:00
|
|
|
version = '1.1'
|
2014-03-07 13:28:08 +01:00
|
|
|
|
|
|
|
setup(
|
2015-03-24 11:16:58 +01:00
|
|
|
name='ckanext-geonetwork',
|
|
|
|
version=version,
|
|
|
|
description="CKAN harvester for GeoNetwork",
|
|
|
|
long_description="""\
|
|
|
|
""",
|
|
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
keywords='',
|
|
|
|
author='Emanuele Tajariol',
|
|
|
|
author_email='etj@geo-solutions.it',
|
|
|
|
url='',
|
|
|
|
license='',
|
|
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
|
|
namespace_packages=['ckanext', 'ckanext.geonetwork'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=[
|
|
|
|
# -*- Extra requirements: -*-
|
|
|
|
],
|
|
|
|
entry_points=
|
|
|
|
"""
|
2014-03-07 13:28:08 +01:00
|
|
|
[ckan.plugins]
|
2015-03-24 11:16:58 +01:00
|
|
|
# Add plugins here, eg
|
|
|
|
# myplugin=ckanext.geonetwork:PluginClass
|
2014-03-07 13:28:08 +01:00
|
|
|
geonetwork_harvester=ckanext.geonetwork.harvesters:GeoNetworkHarvester
|
2015-03-24 11:16:58 +01:00
|
|
|
""",
|
2014-03-07 13:28:08 +01:00
|
|
|
)
|