forked from fmenabe/python-kvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 961 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 961 Bytes
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
setup (
name='kvm',
version='1.0.5',
author='François Ménabé',
author_email='francois.menabe@gmail.com',
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(),
install_requires=[
'unix',
'lxml'
],
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.4',
'Programming Language :: Python :: 3.5',
'Operating System :: Unix',
'Topic :: System :: Systems Administration']
)