forked from karmab/kcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 767 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
from setuptools import setup, find_packages
import os
description = 'Libvirt wrapper on steroids'
long_description = description
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name='kcli',
version='1.0.28',
packages=find_packages(),
include_package_data=True,
description=description,
long_description=long_description,
url='http://github.com/karmab/kcli',
author='Karim Boumedhel',
author_email='[email protected]',
license='GPL',
install_requires=[
'libvirt-python>=2.2.0',
'Click',
'iptools',
'netaddr',
'PyYAML',
'prettytable',
],
entry_points='''
[console_scripts]
kcli=kvirt.cli:cli
''',
)