aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
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"