-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (52 loc) · 1.76 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
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
version = '1.2.2'
setup(
name='ckanext-odn-pipeline',
version=version,
description="""
Extension for administration of pipelines
""",
long_description="""
Extension for administration of UnifiedViews pipelines
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Martin Virag',
author_email='martin.virag@eea.sk',
uv_url='',
license='',
packages=find_packages(exclude=['examples', 'tests']),
namespace_packages=['ckanext',
'ckanext.pipeline',
'ckanext.model',
'ckanext.commands',
'ckanext.controllers',
'ckanext.internal_api'],
package_data={'': [
'i18n/*/LC_MESSAGES/*.po',
'fanstatic/*.css',\
'fanstatic/*.js',\
'templates/*.html',\
'templates/package/*.html',\
'templates/pipeline/*.html',\
'templates/pipeline/snippets/*.html']},
include_package_data=True,
zip_safe=False,
install_requires=[
"PasteDeploy==1.5.0", # the same as CKAN
],
message_extractors={
'ckanext': [
('**.py', 'python', None),
('**.html', 'ckan', None),
]
}, # for babel.extract_messages, says which are source files for translating
entry_points=\
"""
[ckan.plugins]
odn_pipeline=ckanext.pipeline.plugin:PipelinePlugin
internal_api=ckanext.internal_api.plugin:InternalApiPlugin
[paste.paster_command]
pipeline-cmd = ckanext.commands.pipeline_cmd:PipelineCmd
""",
)