-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (60 loc) · 2.12 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 69",
"wheel >= 0.42",
"pip >= 23.2.1"
]
[project]
name = "cloudmesh-sys"
version = "5.0.6"
description = "A cloudmesh command sys that can generate new cloudmesh commands and gets some info about cloudmesh deployments."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Gregor von Laszewski", email = "[email protected]"}
]
maintainers = [
{name = "Gregor von Laszewski", email = "[email protected]"}
]
keywords = ["helper library", "cloudmesh"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Other Environment",
"Environment :: Plugins",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: User Interfaces",
"Topic :: System",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Shells",
"Topic :: Utilities",
]
dependencies = [
"cloudmesh-cmd5",
]
[project.urls]
Homepage = "https://github.com/cloudmesh/cloudmesh-sys"
Documentation = "https://github.com/cloudmesh/cloudmesh-sys/blob/main/README.md"
Repository = "https://github.com/cloudmesh/cloudmesh-sys.git"
Issues = "https://github.com/cloudmesh/cloudmesh-sys/issues"
Changelog = "https://github.com/cloudmesh/cloudmesh-sys/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
include = ["cloudmesh.sys", "cloudmesh.sys.*"]