-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
49 lines (44 loc) · 1.44 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
46
47
48
49
from setuptools import setup, find_packages
version = '0.3.1'
setup(name='ckanext-iati',
version=version,
description="CKAN Extension Code for the IATI Registry",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='iati un aid openaid',
author='Open Knowledge Foundation',
author_email='[email protected]',
url='http://www.okfn.org',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
namespace_packages=['ckanext'],
zip_safe=False,
install_requires=[
'ndg-httpsclient',
'requests',
'pyOpenSSL',
'pyasn1',
'lxml',
'email_validator!= 1.3.0',
'xlwt',
'kombu==3.0.37',
'webhelpers2',
'Paste',
'PasteDeploy'
],
entry_points="""
# -*- Entry points: -*-
[ckan.plugins]
iati_publishers = ckanext.iati.plugins:IatiPublishers
iati_datasets = ckanext.iati.plugins:IatiDatasets
iati_theme = ckanext.iati.plugins:IatiTheme
[paste.paster_command]
iati-archiver=ckanext.iati.commands:Archiver
iati-first-publisher-date=ckanext.iati.commands:UpdatePublisherDate
iati-redirects=ckanext.iati.commands:RedirectsCommand
""",
#[ckan.celery_task]
#tasks = ckanext.iati.celery_import:task_imports
)