-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1.02 KB
/
setup.py
File metadata and controls
30 lines (27 loc) · 1.02 KB
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
#!/usr/bin/env python
from distutils.core import setup
import setuptools
setup(name='vm2ami',
version='1.0.0',
description="Export a vCenter VM's vmdks and ovf descriptor to local file system. Then upload a vmdk to the aws "
"s3 s bucket specified, convert the image to an AMI, then finally rename, and copy the image to "
"all specified regions.",
author='Douglas Rohde',
author_email='drohde@sciencelogic.com',
packages=['vm2ami'],
keywords='export vmdk vCenter vm ami upload ',
url='https://github.com/ScienceLogic/vm2ami/archive/1.0.0.zip',
license="MIT",
install_requires=[
'ovfexporter',
'amiuploader',
],
scripts=['bin/vm2ami'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'Topic :: Other/Nonlisted Topic',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
]
)