27 lines
828 B
Python
27 lines
828 B
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='ckanext-d4science',
|
|
version='0.0.1',
|
|
description='custom theme and dataset type for D4Science',
|
|
packages=find_packages(),
|
|
install_requires=[],
|
|
entry_points='''
|
|
[ckan.plugins]
|
|
d4science = ckanext.d4science.plugin:D4SciencePlugin
|
|
''',
|
|
# 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),
|
|
],
|
|
},
|
|
)
|
|
|