forked from karmab/kcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 906 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
36
37
38
from setuptools import setup, find_packages
import os
description = 'Libvirt/VirtualBox wrapper on steroids'
long_description = description
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name='kcli',
version='8.3',
include_package_data=True,
packages=find_packages(),
zip_safe=False,
description=description,
long_description=long_description,
url='http://github.com/karmab/kcli',
author='Karim Boumedhel',
author_email='[email protected]',
license='ASL',
install_requires=[
'libvirt-python>=2.0.0',
'docker>=2.0',
'flask',
'iptools',
'netaddr',
'PyYAML',
'prettytable',
],
extras_require={
'vitualbox': ['pyvbox'],
},
entry_points='''
[console_scripts]
kcli=kvirt.cli:cli
kweb=kvirt.web:run
''',
)