geonetwork-d4science/setup.py

33 lines
908 B
Python
Raw Permalink Normal View History

from setuptools import setup, find_packages
import sys, os
version = '1.1'
setup(
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=
"""
[ckan.plugins]
# Add plugins here, eg
# myplugin=ckanext.geonetwork:PluginClass
geonetwork_harvester=ckanext.geonetwork.harvesters:GeoNetworkHarvester
""",
)