-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
27 lines (26 loc) · 950 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup (
name='kvm',
version='1.1.1',
author='François Ménabé',
author_email='[email protected]',
packages=['kvm'],
package_dir={'kvm': 'kvm'},
package_data={'kvm': ['kvm.json']},
license='MIT License',
description='An API for managing KVM host.',
long_description=open('README.rst').read(),
keywords = ['python', 'kvm', 'unix', 'virsh'],
install_requires=['unix', 'lxml'],
# entry_points={'unix': ['Hypervisor = kvm.__init__:Hypervisor']},
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: Unix',
'Topic :: System :: Systems Administration']
)