-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (44 loc) · 1.53 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
50
51
52
from setuptools import setup, find_packages
version = '0.0.2'
setup(
name='ckanext-iaest',
version=version,
description="Plugins for exposing and consuming DGA - IAEST metadata on CKAN",
long_description='''\
''',
classifiers=[],
keywords='',
author='David Figueroa Alejandr',
author_email='i@ckan.org',
url='https://github.com/opendata/ckanext-iaest',
license='AGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.iaest'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points='''
[ckan.plugins]
iaest_rdf_harvester=ckanext.iaest.harvesters:IAESTRDFHarvester
iaest=ckanext.iaest.plugins:IAESTPlugin
# Test plugins
#test_rdf_harvester=ckanext.iaest.tests.test_harvester:TestRDFHarvester
#test_rdf_null_harvester=ckanext.iaest.tests.test_harvester:TestRDFNullHarvester
#test_rdf_exception_harvester=ckanext.iaest.tests.test_harvester:TestRDFExceptionHarvester
[ckan.rdf.profiles]
euro_dcat_ap_iaest=ckanext.iaest.profiles:EuropeanDCATAPProfile
#[paste.paster_command]
#generate_static = ckanext.iaest.commands:GenerateStaticDCATCommand
#[babel.extractors]
#ckan = ckan.lib.extract:extract_ckan
''',
message_extractors={
'ckanext': [
('**.py', 'python', None),
('**.js', 'javascript', None),
('**/templates/**.html', 'ckan', None),
],
},
)