-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 850 Bytes
/
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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md')).read()
except:
README = 'ESXi Management Utility'
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
"Programming Language :: Python :: 3.6",
]
setup(
name='esximanager',
version='1.0.0.0',
description='ESXi Management Utility',
classifiers=CLASSIFIERS,
author='Ryan Chapin',
author_email='[email protected]',
long_description=README,
url='',
python_requires='>=3.6',
packages=find_packages(),
include_package_data=True,
install_requires=[
'fabric3==1.14.post1',
],
entry_points={
'console_scripts': [
'esximanager=esximanager.main:main',
],
},
)