~whitmo/cloudfoundry/reconciler

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Whit Morriss
  • Date: 2014-10-13 11:09:19 UTC
  • Revision ID: whit.morriss@canonical.com-20141013110919-2y4fd30fj8q24phk
fix up, add helper command

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    url='https://github.com/bcsaller/charmgen',
20
20
    packages=[
21
21
        'charmgen',
22
 
        'cloudfoundry'
 
22
        'cloudfoundry',
 
23
        'reconciler'
23
24
    ],
24
25
    package_dir={'charmgen': 'charmgen',
25
 
                 'cloudfoundry': 'cloudfoundry'},
 
26
                 'cloudfoundry': 'cloudfoundry',
 
27
                 'reconciler': 'reconciler'},
26
28
    license="BSD",
27
29
    zip_safe=False,
28
30
    keywords='cloudfoundry',
38
40
        'console_scripts': [
39
41
            'generate_charm = charmgen.generator:main',
40
42
            'get_relations = charmgen.getrels:main',
41
 
            'diff_revisions = charmgen.differ:main'
42
 
 
 
43
            'diff_revisions = charmgen.differ:main',
 
44
            'rcnlr = reconciler.app:main'
43
45
        ]
44
46
    }
45
47
)