forked from fidelity/awsrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (59 loc) · 1.96 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
65
66
67
68
69
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "awsrun"
authors = [{ name = "Pete Kazmier", email = "[email protected]" }]
description = "CLI and library to execute commands over one or more AWS or Azure accounts concurrently."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["aws", "azure", "cli", "command runner"]
license = { file = "LICENSE" }
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
]
# mandatory dependencies
dependencies = ["PyYAML>=3.10", "requests", "requests_file", "requests_ntlm"]
[project.optional-dependencies]
all = ["awsrun[aws,azure,cmds,dev]"]
# dependencies for supported CSPs
aws = ["boto3>=1.12.39", "bs4"]
azure = ["azure-identity", "azure-mgmt-network"]
# dependencies for bundled commands
cmds = ["awsrun[last,dx-maint,dx-status]"]
last = ["pyperclip", "colorama", "rich", "textual==0.20"]
dx-maint = ["colorama"]
dx-status = ["colorama", "asciichartpy>=1.5.25", "pysparklines>=1.0"]
# dependencies for development
dev = [
"black",
"flake8",
"freezegun",
"isort",
"pdoc3",
"pytest",
"pytest-mock",
]
[project.scripts]
awsrun = "awsrun.cli:main"
azurerun = "awsrun.cli:main"
[project.urls]
homepage = "https://github.com/fidelity/awsrun"
[tool.setuptools.dynamic]
version = { attr = "awsrun.__version__" }