-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (31 loc) · 888 Bytes
/
setup.py
File metadata and controls
executable file
·42 lines (31 loc) · 888 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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/python3
from setuptools import setup
__author__ = "Md Haris Iqbal"
setup(
name="do-automate",
version="0.1.0",
description="A set of scripts to spin up qemu VMs from linux kernel code",
author="Md Haris Iqbal",
author_email="haris.phnx@gmail.com",
maintainer="Md Haris Iqbal",
maintainer_email="haris.phnx@gmail.com",
license="GNU",
url="https://github.com/ionos-enterprise/testVM",
packages=['do_automate'],
install_requires=["paramiko"],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
python_requires='>=3',
entry_points={
'console_scripts': [
'do_qemu=do_automate.main:main',
'do_automate_setup=do_automate.do_setup:setup',
]
},
)