123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- from setuptools import setup, find_packages
- from codecs import open
- from os import path
- here = path.abspath(path.dirname(__file__))
- with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
- long_description = f.read()
- setup(
- name='''ckanext-archiver''',
-
-
-
- version='2.0.0',
- description='''Archives resources in CKAN (CKAN Extension)''',
- long_description=long_description,
-
- url='https://github.com/datagovuk/ckanext-archiver',
-
- author='''Open Knowledge / Cabinet Office''',
- author_email='info@okfn.org',
-
- license='MIT',
-
- classifiers=[
-
-
-
-
- 'Development Status :: 4 - Beta',
-
- 'License :: OSI Approved :: MIT License',
-
-
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Environment :: Console',
- 'Intended Audience :: Developers',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Topic :: Software Development :: Libraries :: Python Modules'
- ],
-
- keywords='''CKAN''',
-
-
- packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
- install_requires=[
-
-
-
-
- ],
-
-
-
- include_package_data=True,
- package_data={
- },
-
-
-
-
- data_files=[],
-
-
-
- entry_points='''
- [paste.paster_command]
- archiver = ckanext.archiver.commands:Archiver
- celeryd2 = ckanext.archiver.command_celery:CeleryCmd
- [ckan.plugins]
- archiver = ckanext.archiver.plugin:ArchiverPlugin
- testipipe = ckanext.archiver.plugin:TestIPipePlugin
- [ckan.celery_task]
- tasks = ckanext.archiver.celery_import:task_imports
- [babel.extractors]
- ckan = ckan.lib.extract:extract_ckan
- ''',
-
-
-
-
- message_extractors={
- 'ckanext': [
- ('**.py', 'python', None),
- ('**.js', 'javascript', None),
- ('**/templates/**.html', 'ckan', None),
- ],
- },
- namespace_packages=['ckanext'],
- )
|