forked from mechboxes/mech
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
57 lines (50 loc) · 1.71 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
"""Setup mech"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
from mech import __version__
def read(fname):
"""Read in a file."""
try:
with open(os.path.join(os.path.dirname(__file__), fname), "r") as a_file:
return a_file.read().strip()
except IOError:
return ''
setup(
name="mikemech",
version=__version__,
author="Kevin Chung, Germán Méndez Bravo, Mike Kinney",
author_email="kchung@nyu.edu, german.mb@gmail.com, mike.kinney@gmail.com",
url="https://github.com/mkinney/mech",
download_url="https://github.com/mkinney/mech/tarball/master",
license="MIT",
description="Tool for command line virtual machines",
long_description=read("README.md"),
long_description_content_type="text/markdown",
keywords=['vagrant', 'vmware', 'vmrun', 'tool', 'virtualization'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: System :: Emulators",
"Topic :: Utilities",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=['requests', 'click', 'colorama', 'pyinfra', 'pypsrp'],
python_requires='>=3.7',
packages=['mech'],
entry_points={
'console_scripts': [
'mech = mech.mech_cli:cli',
]
},
)