~juju-qa/juju-ci-tools/trunk

1889.2.4 by Aaron Bentley
Add setup.py, fix version_client.
1
from setuptools import setup
1941.1.1 by Aaron Bentley
Prepare jujupy to be published on pypi.
2
3
4
with open('jujupy-description.rst') as f:
5
    long_description = f.read()
6
7
1889.2.4 by Aaron Bentley
Add setup.py, fix version_client.
8
setup(
9
    name='jujupy',
1941.1.3 by Aaron Bentley
Downgrade version to 0.9.0
10
    version='0.9.0',
1889.2.4 by Aaron Bentley
Add setup.py, fix version_client.
11
    description='A library for driving the Juju client.',
1941.1.1 by Aaron Bentley
Prepare jujupy to be published on pypi.
12
    long_description=long_description,
1889.2.4 by Aaron Bentley
Add setup.py, fix version_client.
13
    packages=['jujupy'],
14
    install_requires=[
15
        'python-dateutil >= 2',
16
        'pexpect >= 4.0.0',
17
        'PyYAML >= 3.0',
1941.1.1 by Aaron Bentley
Prepare jujupy to be published on pypi.
18
        ],
19
    author='The Juju QA Team',
20
    author_email='juju-qa@lists.canonical.com',
21
    url='https://launchpad.net/juju-ci-tools',
22
    license='Apache 2',
23
    classifiers=[
1941.1.2 by Aaron Bentley
Switch to lgpl.
24
        "License :: OSI Approved :: GNU Lesser General Public License v3"
25
        " (LGPLv3)",
1941.1.1 by Aaron Bentley
Prepare jujupy to be published on pypi.
26
        "Development Status :: 5 - Production/Stable",
27
        "Intended Audience :: Developers",
28
        "Programming Language :: Python",
29
        "Programming Language :: Python :: 2.7",
30
        "Programming Language :: Python :: 3.5",
31
        "Operating System :: POSIX :: Linux",
32
        "Operating System :: Microsoft :: Windows",
33
        "Operating System :: MacOS :: MacOS X"
34
    ],
1889.2.4 by Aaron Bentley
Add setup.py, fix version_client.
35
    )