ckanext-d4science/setup.py

27 lines
828 B
Python
Raw Permalink Normal View History

2024-10-02 14:16:07 +02:00
# -*- coding: utf-8 -*-
2024-10-08 10:55:11 +02:00
from setuptools import setup, find_packages
2024-10-02 14:16:07 +02:00
setup(
2024-10-08 13:01:36 +02:00
name='ckanext-d4science',
2024-10-08 10:55:11 +02:00
version='0.0.1',
description='custom theme and dataset type for D4Science',
packages=find_packages(),
install_requires=[],
entry_points='''
[ckan.plugins]
2024-10-08 14:22:24 +02:00
d4science = ckanext.d4science.plugin:D4SciencePlugin
2024-10-08 10:55:11 +02:00
''',
2024-10-02 14:16:07 +02:00
# If you are changing from the default layout of your extension, you may
# have to change the message extractors, you can read more about babel
# message extraction at
# http://babel.pocoo.org/docs/messages/#extraction-method-mapping-and-configuration
message_extractors={
'ckanext': [
('**.py', 'python', None),
('**.js', 'javascript', None),
('**/templates/**.html', 'ckan', None),
],
2024-10-08 10:55:11 +02:00
},
2024-10-02 14:16:07 +02:00
)
2024-10-08 10:55:11 +02:00