forked from htagTsc/ckanext-dcatde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.35 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
from setuptools import setup, find_packages
VERSION = '4.4.1'
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
[paste.paster_command]
dcatde_migrate = ckanext.dcatde.commands.migration:DCATdeMigrateCommand
dcatde_themeadder = ckanext.dcatde.commands.themeadder:ThemeAdder
triplestore = ckanext.dcatde.commands.triplestore:Triplestore
''',
message_extractors={
'ckanext': [
('**.py', 'python', None),
('**.js', 'javascript', None),
('**/templates/**.html', 'ckan', None),
],
},
)