Bump to 1.1.1
This commit is contained in:
parent
300da315e0
commit
7dd82a0e01
94
setup.py
94
setup.py
|
@ -1,53 +1,51 @@
|
|||
from setuptools import setup, find_packages
|
||||
import sys, os
|
||||
|
||||
version = '1.1.0'
|
||||
version = '1.1.1'
|
||||
|
||||
setup(
|
||||
name='ckanext-harvest',
|
||||
version=version,
|
||||
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=[
|
||||
# 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
|
||||
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
|
||||
[babel.extractors]
|
||||
ckan = ckan.lib.extract:extract_ckan
|
||||
""",
|
||||
message_extractors={
|
||||
'ckanext': [
|
||||
('**.py', 'python', None),
|
||||
('**.js', 'javascript', None),
|
||||
('**/templates/**.html', 'ckan', None),
|
||||
],
|
||||
}
|
||||
name='ckanext-harvest',
|
||||
version=version,
|
||||
description="Harvesting interface plugin for CKAN",
|
||||
long_description="""\
|
||||
""",
|
||||
classifiers=[],
|
||||
keywords='',
|
||||
author='CKAN',
|
||||
author_email='ckan@okfn.org',
|
||||
url='https://github.com/ckan/ckanext-harvest',
|
||||
license='AGPL',
|
||||
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
||||
namespace_packages=['ckanext'],
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
install_requires=[
|
||||
# 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
|
||||
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
|
||||
[babel.extractors]
|
||||
ckan = ckan.lib.extract:extract_ckan
|
||||
""",
|
||||
message_extractors={
|
||||
'ckanext': [
|
||||
('**.py', 'python', None),
|
||||
('**.js', 'javascript', None),
|
||||
('**/templates/**.html', 'ckan', None),
|
||||
],
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue