github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/acceptancetests/setup.py (about) 1 from setuptools import setup 2 3 4 with open('jujupy-description.rst') as f: 5 long_description = f.read() 6 7 8 setup( 9 name='jujupy', 10 version='0.9.0', 11 description='A library for driving the Juju client.', 12 long_description=long_description, 13 packages=['jujupy'], 14 install_requires=[ 15 'python-dateutil >= 2', 16 'pexpect >= 4.0.0', 17 'PyYAML >= 3.0', 18 ], 19 author='The Juju Team', 20 author_email='juju-dev@lists.ubuntu.com', 21 url='https://github.com/juju/juju', 22 license='Apache 2', 23 classifiers=[ 24 "License :: OSI Approved :: GNU Lesser General Public License v3" 25 " (LGPLv3)", 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 ], 35 )