-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 985 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 985 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
from setuptools import setup
setup(name='xmlvirshparser',
version='0.5',
description='Parses virsh dump XML output to OpenStack prettytable form',
url='https://github.com/ervikrant06/virsh_xml_parser',
author='Vikrant Aggarwal',
author_email='vaggarwa@redhat.com',
packages=['xmlvirshparser'],
install_requires=[
'xmltodict',
'prettytable'
],
platforms=['Linux'],
package_dir={'xmlvirshparser': 'xmlvirshparser'},
entry_points={
'console_scripts': [
'xmlvirshparser=xmlvirshparser:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Text Editors :: Text Processing',
'Topic :: Text Processing :: Markup :: XML',
],
)