-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.04 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.04 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
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Setup script for VMware vSphere Reporter
"""
from setuptools import setup, find_packages
setup(
name="vsphere-reporter",
version="1.0.0",
description="VMware vSphere Environment Reporting Tool",
author="Administrator",
packages=find_packages(),
install_requires=[
"pyVmomi>=7.0.0",
"PyQt5>=5.15.0",
"reportlab>=3.6.0",
"python-docx>=0.8.11",
"jinja2>=3.0.0",
"humanize>=3.0.0",
"cx_Freeze>=6.10.0"
],
entry_points={
"console_scripts": [
"vsphere-reporter=vsphere_reporter:main",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: System Administrators",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Systems Administration",
],
python_requires=">=3.8",
)