-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 709 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='juju-slayer',
version="0.1.0",
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent'],
author='Kapil Thangavelu',
author_email='kapil.foss@gmail.com',
description="Softlayer integration with juju",
long_description=open("README.rst").read(),
url='https://github.com/kapilt/juju-softlayer',
license='BSD',
packages=find_packages(),
install_requires=["PyYAML", "requests", "SoftLayer"],
entry_points={
"console_scripts": [
'juju-sl = juju_slayer.cli:main']},
)