forked from kapilt/bundle-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 loc) · 862 Bytes
/
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
from setuptools import find_packages
import os
version = '0.1'
with open(os.path.abspath('./README.md')) as readme:
long_description = readme.read()
setup(name='kubecharm',
version=version,
description="Tools releasing and testing kubernetes w/ juju",
long_description=long_description,
classifiers=[],
keywords='kubernetes',
author='whit',
author_email='whit.morriss at canonical.com',
url='',
license='APL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'path.py',
'pyyaml',
'subparse',
'clint',
'requests',
],
entry_points="""
[console_scripts]
kfc=kubecharm.cli:main
""",
)