ckanext-d4science/setup.py

17 lines
528 B
Python
Raw Normal View History

2024-10-02 14:16:07 +02:00
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
# 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),
],
}
)