harvester-d4science/setup.py

54 lines
1.5 KiB
Python
Raw Normal View History

from setuptools import setup, find_packages
import sys, os
2016-05-23 17:00:23 +02:00
version = '0.0.5'
setup(
name='ckanext-harvest',
version=version,
2011-05-13 18:08:21 +02:00
description="Harvesting interface plugin for CKAN",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='CKAN',
author_email='ckan@okfn.org',
url='http://ckan.org/wiki/Extensions',
license='AGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext'],
include_package_data=True,
zip_safe=False,
install_requires=[
2016-05-23 17:00:23 +02:00
# dependencies are specified in pip-requirements.txt
# instead of here
],
tests_require=[
'nose',
'mock',
],
test_suite = 'nose.collector',
entry_points=\
"""
[ckan.plugins]
# Add plugins here, eg
harvest=ckanext.harvest.plugin:Harvest
ckan_harvester=ckanext.harvest.harvesters:CKANHarvester
[ckan.test_plugins]
test_harvester=ckanext.harvest.tests.test_queue:MockHarvester
2016-06-13 12:12:30 +02:00
test_harvester2=ckanext.harvest.tests.test_queue2:MockHarvester
test_action_harvester=ckanext.harvest.tests.test_action:MockHarvesterForActionTests
[paste.paster_command]
harvester = ckanext.harvest.commands.harvester:Harvester
2015-06-10 10:55:36 +02:00
[babel.extractors]
ckan = ckan.lib.extract:extract_ckan
""",
2015-06-10 10:55:36 +02:00
message_extractors={
'ckanext': [
('**.py', 'python', None),
('**.js', 'javascript', None),
2015-12-10 16:52:46 +01:00
('**/templates/**.html', 'ckan', None),
2015-06-10 10:55:36 +02:00
],
}
)