forked from ckan/ckanext-qa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
from ckanext.qa import __version__
setup(
name='ckanext-qa',
version=__version__,
description='Quality Assurance plugin for CKAN',
long_description='',
classifiers=[],
keywords='',
author='Open Knowledge Foundation, Cabinet Office & contributors',
author_email='[email protected]',
url='http://ckan.org/wiki/Extensions',
license='mit',
packages=find_packages(exclude=['tests']),
namespace_packages=['ckanext'],
include_package_data=True,
zip_safe=False,
install_requires=[
'ckanext-archiver>=2.0',
'ckanext-report>=0.1',
'SQLAlchemy>=0.9',
'requests>=2.3',
'xlrd>=1.0',
'messytables>=0.15',
'python-magic>=0.4',
'progressbar>=2.3',
'six>=1.9' # until messytables->html5lib releases https://github.com/html5lib/html5lib-python/pull/301
],
tests_require=[
'nose',
'mock',
'flask'
],
entry_points='''
[paste.paster_command]
qa=ckanext.qa.commands:QACommand
[ckan.plugins]
qa=ckanext.qa.plugin:QAPlugin
[ckan.celery_task]
tasks=ckanext.qa.celery_import:task_imports
''',
)