forked from datagovuk/ckanext-datapreview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 895 Bytes
/
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
from setuptools import setup, find_packages
import sys, os
version = '0.1'
setup(
name='ckanext-datapreview',
version=version,
description="Provides data for the data preview from the resource cache",
long_description="""\
""",
classifiers=[],
keywords='',
author='Ross Jones',
author_email='[email protected]',
url='',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.datapreview'],
include_package_data=True,
zip_safe=False,
install_requires=[
'requests>=0.14',
'messytables>=0.8'
],
entry_points=\
"""
[ckan.plugins]
datapreview=ckanext.datapreview.plugin:DataPreviewPlugin
[paste.paster_command]
prepresourcecache = ckanext.datapreview.command:PrepResourceCache
strawpollpreviewtest = ckanext.datapreview.command:StrawPollPreviewTest
""",
)