aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorChristian Segundo2022-06-10 20:27:29 +0200
committerChristian Segundo2022-06-10 20:27:29 +0200
commitf4a021a9d7412a80bb72df9a5e1d13285bc84b80 (patch)
tree8235a245a734bb747485a4e380d594f0ac685a9d /pyproject.toml
parent10c602bf6b79cf87dbd18dabd50b50a5be4a0984 (diff)
downloadawscli-plugin-passtotp-f4a021a9d7412a80bb72df9a5e1d13285bc84b80.tar.gz
first commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml30
1 files changed, 30 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..fc647f4
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,30 @@
+[tool.poetry]
+name = "awscli-plugin-passtotp"
+version = "1.0.0"
+description = ""
+authors = ["Christian Segundo <christian@segundo.com>"]
+license = "GPL-3.0-or-later"
+
+repository = "https://github.com/someone-stole-my-name/awscli-plugin-passtotp"
+documentation = "https://github.com/someone-stole-my-name/awscli-plugin-passtotp/blob/master/README.md"
+
+readme = "README.md"
+
+keywords = ["aws", "aws-cli", "boto3", "pass", "pass-otp"]
+
+classifiers = [
+ "Environment :: Console",
+ "Intended Audience :: Developers",
+ "Intended Audience :: System Administrators"
+]
+
+[tool.poetry.dependencies]
+python = "^3.7"
+botocore = "^1.14.14"
+
+[tool.poetry.dev-dependencies]
+black = "^19.10b0"
+
+[build-system]
+requires = ["poetry>=0.12"]
+build-backend = "poetry.masonry.api"