-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup
with open('jujupy-description.rst') as f:
long_description = f.read()
setup(
name='jujupy',
version='0.9.0',
description='A library for driving the Juju client.',
long_description=long_description,
packages=['jujupy'],
install_requires=[
'python-dateutil >= 2',
'pexpect >= 4.0.0',
'PyYAML >= 3.0',
],
author='The Juju Team',
url='https://github.com/juju/juju',
license='Apache 2',
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3"
" (LGPLv3)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X"
],
)