forked from elastic/aws-mfa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.09 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
[tool.poetry]
name = "awth"
version = "0.1.0a6"
description = "awth your way into aws, again, with mfa"
authors = [
"jessebot <jessebot@linux.com>",
"Max Roby <emax@cloudydev.net>"
]
license = "MIT"
readme = "README.md"
documentation = "https://github.com/small-hack/awth"
repository = "http://github.com/small-hack/awth"
keywords = ["aws"]
classifiers = ["Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"]
packages = [{include = "awth"}]
[tool.poetry.dependencies]
boto3 = "^1.38"
click = "^8.1"
keyring = "^25.6"
python = "^3.12"
rich = "^13.6"
secretstorage = "^3.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0"
[tool.poetry.plugins."awth.application.plugin"]
"awth" = "awth:main"
[tool.poetry.scripts]
awth = 'awth:main'
[tool.poetry.urls]
"Bug Tracker" = "http://github.com/small-hack/awth/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"