-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.54 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
from setuptools import setup, find_packages
import sys, os
version = '0.9.2-alpha'
setup(
name='ckanext-tess',
version=version,
description="CKAN extension for TeSS",
long_description='''
''',
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='',
author_email='',
url='',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['ckanext', 'ckanext.tess'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points='''
[ckan.plugins]
# Add plugins here, e.g.
# myplugin=ckanext.tess.plugin:PluginClass
tess=ckanext.tess.plugin:TeSSPlugin
package=ckanext.tess.package:PackagePlugin
node=ckanext.tess.node:NodePlugin
node_controller=ckanext.tess.node:NodeController
admin=ckanext.tess.admin:AdminPlugin
admin_controller=ckanext.tess.admin:AdminController
organization=ckanext.tess.organization:OrganizationPlugin
workflow=ckanext.tess.workflow:WorkflowPlugin
workflow_controller=ckanext.tess.workflow:WorkflowController
workflow_api=ckanext.tess.workflow:WorkflowApi
event=ckanext.tess.event:EventPlugin
event_controller=ckanext.tess.event:EventController
event_api=ckanext.tess.event:EventApi
tessrelations=ckanext.tess.tessrelations:TessrelationsPlugin
group=ckanext.tess.group:GroupPlugin
''',
)