-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.1 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
from setuptools import setup, find_packages
version = '0.1'
setup(
name='ckanext-multilingual_datastore',
version=version,
description="A CKAN extension that provides UI tools and API calls for translating and viewing tabular resources",
long_description="""\
""",
classifiers=[],
keywords='ckan, multilinguality, datastore, preview',
author='Stelios Manousopoulos',
author_email='[email protected]',
url='https://github.com/PublicaMundi/ckanext-multilingual_datastore',
license='GPLv3',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.multilingual_datastore'],
include_package_data=True,
zip_safe=False,
install_requires=[
],
entry_points=\
"""
[ckan.plugins]
multilingual_datastore=ckanext.multilingual_datastore.plugin:MultilingualDatastore
""",
message_extractors = {
'ckanext/multilingual_datastore': [
('**.py', 'python', None),
('**.html', 'ckan', None),
('**.js', 'javascript', None),
]
}
)