-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.22 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.8'
setup(
name='agesic',
version=version,
description="AGESIC CKAN plugin",
long_description="""
""",
classifiers=[],
keywords='',
author=u'Aníbal Pacheco',
author_email='apacheco@servinfo.com.uy',
url='https://catalogodatos.gub.uy/',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
[ckan.rdf.profiles]
agesic_dcat_ap=ckanext.agesic.profiles:AgesicDCATAPProfile
[paste.paster_command]
brokenurls=ckanext.agesic.commands:BrokenurlsCmd
datasetreport=ckanext.agesic.commands:DatasetReportCmd
migratecustomfields=ckanext.agesic.commands:MigrateCustomFieldsCmd
sendnotifications=ckanext.agesic.commands:SendNotificationsCmd
sendtestemail=ckanext.agesic.commands:SendTestEmailCmd
updatepackagenames=ckanext.agesic.commands:UpdatePackageNamesCmd
tagfilter=ckanext.agesic.commands:TagFilterCmd
[ckan.plugins]
# Add plugins here, eg
agesic=ckanext.agesic.plugin:AgesicIDatasetFormPlugin
""",
)