forked from ckan/ckanext-issues
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (44 loc) · 1.42 KB
/
setup.py
File metadata and controls
49 lines (44 loc) · 1.42 KB
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
from setuptools import setup, find_packages
version = '0.3'
setup(
name='ckanext-issues',
version=version,
description='CKAN Extension providing Issues (Task/Todos/...)',
classifiers=[],
keywords='',
author='CKAN Project',
author_email='info@okfn.org',
url='',
license='mit',
packages=find_packages(exclude=['tests']),
namespace_packages=['ckanext', 'ckanext.issues'],
package_data = {'ckanext.issues' : ['public/ckanext-issues/*.js',
'public/ckanext-issues/css/*.css',
'public/ckanext-issues/images/*.png',
'templates/*.html']},
include_package_data=True,
zip_safe=False,
install_requires=[
'enum34',
],
entry_points=\
"""
[ckan.plugins]
issues=ckanext.issues.plugin:IssuesPlugin
[paste.paster_command]
issues = ckanext.issues.commands:Issues
[babel.extractors]
ckan = ckan.lib.extract:extract_ckan
""",
# 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),
],
}
)