-
Notifications
You must be signed in to change notification settings - Fork 766
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (61 loc) · 1.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyvmomi"
dynamic = ["version"]
authors = [
{name = "Broadcom Inc."},
]
maintainers = [
{email = "daniel.draganov@broadcom.com"},
{email = "stefan.hristov@broadcom.com"},
]
description = "VMware vSphere Python SDK"
readme = "README.rst"
license = {text = "License :: OSI Approved :: Apache Software License"}
keywords = ["Broadcom", "VMware", "VCF", "SDK", "vSphere", "vCenter", "ESX"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'Environment :: No Input/Output (Daemon)',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
[project.optional-dependencies]
sso = [
"cryptography",
"lxml",
]
[project.urls]
Homepage = "https://developer.broadcom.com/sdks/pyvmomi/latest"
[tool.setuptools]
packages = ['pyVmomi', 'pyVim']
py-modules = ['vsanapiutils', 'vsanmgmtObjects']
platforms = ['Linux', 'Mac OS-X', 'Solaris', 'Windows', 'Unix']
zip-safe = true
[tool.setuptools.package-data]
pyVmomi = ["**/*.pyi", "py.typed"]
[tool.setuptools.dynamic]
version = {attr = "pyVmomi.version_info"}
[tool.tox]
env_list = ["3.10", "3.11", "3.12", "3.13", "3.14"]
[tool.tox.env_run_base]
description = "Run test under {base_python}"
deps = [
"mock==5.2.0",
"vcrpy==7.0.0",
]
commands = [["python", "-m", "unittest", "discover", "tests"]]