From f4a021a9d7412a80bb72df9a5e1d13285bc84b80 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Fri, 10 Jun 2022 20:27:29 +0200 Subject: first commit --- pyproject.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') 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 "] +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" -- cgit v1.2.3