-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.01 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
[tool.poetry]
name = "cloud-instance"
version = "0.1.6"
description = ""
authors = ["Fabio Ghirardello"]
license = "GPLv3+"
readme = "README.md"
homepage = "https://github.com/fabiog1901/cloud_instance"
repository = "https://github.com/fabiog1901/cloud_instance"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
]
[tool.poetry.scripts]
cloud_instance = 'cloud_instance.cli.cli:app'
[tool.poetry.dependencies]
python = "^3.11"
boto3 = "^1.38.8"
boto = "^2.49.0"
botocore = "^1.38.8"
google-api-core = "^2.24.2"
google-auth = "^2.39.0"
google-cloud-compute = "^1.30.0"
googleapis-common-protos = "^1.70.0"
azure-common = "^1.1.28"
azure-core = "^1.34.0"
azure-identity = "^1.21.0"
azure-mgmt-compute = "^34.1.0"
azure-mgmt-core = "^1.5.0"
azure-mgmt-network = "^28.1.0"
azure-mgmt-resource = "^23.3.0"
typer = "^0.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"