-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.19 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
from setuptools import setup, find_packages
version = '1.4.1'
setup(
name='ckanext-dia',
version=version,
description='DIA-related modifications to CKAN',
long_description='',
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[],
keywords='',
author='Data.govt.nz',
author_email='[email protected]',
url='https://www.data.govt.nz',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.dia'],
include_package_data=True,
zip_safe=False,
install_requires=[
"pycountry",
"pyproj",
"future"
],
entry_points="""
[ckan.plugins]
diavalidation=ckanext.dia.plugin:DIAValidationPlugin
diaschema=ckanext.dia.plugin:DIASchemaPlugin
diaharvester=ckanext.dia.harvester.csw:DIASpatialHarvester
diadcatjsonharvester=ckanext.dia.harvester.dcat:DIADCATJSONHarvester
dianohomepage=ckanext.dia.plugin:DIANoHomepagePlugin
diacommands=ckanext.dia.plugin:DIACommandsPlugin
diauriminting=ckanext.dia.plugin:DIAUriMintingPlugin
[paste.paster_command]
admin=ckanext.dia.commands:AdminCommand
""",
)