~deryck/lazr-js/morphing-window-dialog

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2009-11-13 20:54:15 UTC
  • mfrom: (81.5.30 combo)
  • Revision ID: launchpad@pqm.canonical.com-20091113205415-ix44tlvo29zg4tmc
[r=rockstar] Infrastructure for a YUI Combo Handler and for using it
        with Lazr-JS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    description=('Collection of JS widgets'),
26
26
    license='GPL v3',
27
27
    install_requires=[
28
 
        'bzr',
29
 
        'cssutils',
30
 
        'lazr.testing',
31
28
        'setuptools',
32
29
    ],
33
30
    url='https://launchpad.net/lazr-js',
38
35
        "Programming Language :: Python",
39
36
    ],
40
37
    extras_require=dict(
41
 
    ),
 
38
        jsbuild = ["cssutils"],
 
39
        jslint = ["bzr"],
 
40
        test = ["cssutils", "lazr.testing", "Paste"],
 
41
        yuimeta = ["cssutils", "simplejson"],
 
42
        ),
42
43
    entry_points=dict(
43
44
        console_scripts=[
44
 
            'build=lazr.js.build:main',
 
45
            'jsbuild=lazr.js.build:main',
45
46
            'jslint=lazr.js.jslint:main',
46
 
            'scaffold=lazr.js.scaffold:main',
 
47
            'jsscaffold=lazr.js.scaffold:main',
 
48
            'yuimeta=lazr.js.meta:main',
47
49
        ]
48
50
    ),
49
51
)