~barryprice/juju-deployer/LP1892423

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Adam Gandelman
  • Date: 2013-09-03 20:44:14 UTC
  • mfrom: (69.3.45 darwin)
  • Revision ID: adamg@canonical.com-20130903204414-xsqqz2gp83dp5d2o
MergeĀ lp:juju-deployer/darwin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from setuptools import setup, find_packages
 
2
 
 
3
long_description = """
 
4
Python client for juju-core websocket api.
 
5
"""
 
6
 
 
7
setup(
 
8
    name="juju-deployer",
 
9
    version="0.2.3",
 
10
    description="A tool for deploying complex stacks with juju.",
 
11
    long_description=open("README").read(),
 
12
    author="Kapil Thangavelu",
 
13
    author_email="kapil.foss@gmail.com",
 
14
    url="http://launchpad.net/juju-deployer",
 
15
    install_requires=["jujuclient >= 0.0.7"],
 
16
    packages=find_packages(),
 
17
    classifiers=[
 
18
        "Development Status :: 2 - Pre-Alpha",
 
19
        "Programming Language :: Python",
 
20
        "Topic :: Internet",
 
21
        "Topic :: Software Development :: Libraries :: Python Modules",
 
22
        "Intended Audience :: Developers"],
 
23
    test_suite="deployer.tests",
 
24
    entry_points={
 
25
        "console_scripts": [
 
26
            'juju-deployer = deployer.cli:main']},
 
27
    )