~frankban/juju-gui/quickstart-initial

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Francesco Banconi
  • Date: 2013-10-14 15:24:29 UTC
  • Revision ID: francesco.banconi@canonical.com-20131014152429-9v1tkogs189u1jc7
Remove tornado.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
ROOT = os.path.abspath(os.path.dirname(__file__))
24
24
PROJECT_NAME = 'quickstart'
 
25
REQUIREMENTS = (
 
26
    'jujuclient==0.11',
 
27
    'PyYAML==3.10',
 
28
)
25
29
 
26
30
project = __import__(PROJECT_NAME)
27
31
description_path = os.path.join(ROOT, 'README.rst')
57
61
    ],
58
62
    package_data={PROJECT_NAME: data_files},
59
63
    scripts=['juju-quickstart'],
 
64
    install_requires=REQUIREMENTS,
60
65
    classifiers=[
61
66
        'Development Status :: 3 - Alpha',
62
67
        'Environment :: Web Environment',