~milo/lava-dispatcher/tar-repo

« back to all changes in this revision

Viewing changes to doc/examples/plugins/demo-action-plugin/setup.py

  • Committer: Milo Casagrande
  • Date: 2013-07-22 13:29:36 UTC
  • mfrom: (637.2.1 lava-dispatcher)
  • Revision ID: milo@ubuntu.com-20130722132936-iwj9v9kllfwtrcop
Merged from trunk, fixed conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
from setuptools import setup
4
4
 
5
 
setup (
 
5
setup(
6
6
    name='demo-action-plugin',
7
7
    version='0.0.1',
8
8
    author='Paul Larson',
9
9
    author_email='paul.larson@linaro.org',
10
10
    url='',
11
11
    description='LAVA Dispatcher plugin test',
12
 
    packages = ['demo_action_plugin'],
 
12
    packages=['demo_action_plugin'],
13
13
    entry_points="""
14
14
    [lava_dispatcher.actions]
15
15
    foo = demo_action_plugin.foo:cmd_foo
16
16
    """,
17
17
    zip_safe=False,
18
18
    include_package_data=True
19
 
    )
 
19
)