-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
41 lines (36 loc) · 1.11 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
from setuptools import setup, find_packages
VERSION = '6.8.3'
with open('base-requirements.txt') as f:
required = [line.strip() for line in f]
setup(
name='ckanext-dcatde',
version=VERSION,
description="Plugin to migrate to and provide DCAT-AP.de Profile",
long_description='''\
''',
classifiers=[],
keywords='',
author='SEITENBAU GmbH',
author_email='[email protected]',
url='https://github.com/GovDataOfficial/ckanext-dcatde',
license='AGPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ckanext', 'ckanext.dcatde'],
include_package_data=True,
zip_safe=False,
install_requires=required,
entry_points='''
[ckan.plugins]
dcatde_rdf_harvester=ckanext.dcatde.harvesters.dcatde_rdf:DCATdeRDFHarvester
dcatde=ckanext.dcatde.plugins:DCATdePlugin
[ckan.rdf.profiles]
dcatap_de=ckanext.dcatde.profiles:DCATdeProfile
''',
message_extractors={
'ckanext': [
('**.py', 'python', None),
('**.js', 'javascript', None),
('**/templates/**.html', 'ckan', None),
],
},
)