Skip to content

Commit 9b9096d

Browse files
author
Luca Valentini
committed
Add poetry config and dependencies
1 parent 27bf473 commit 9b9096d

File tree

2 files changed

+375
-0
lines changed

2 files changed

+375
-0
lines changed

poetry.lock

Lines changed: 355 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[tool.poetry]
2+
name = "python-aws-ssm"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["Luca Valentini <[email protected]>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "^3.7"
9+
boto3 = "^1.9"
10+
11+
[tool.poetry.dev-dependencies]
12+
pytest = "^3.0"
13+
mypy = "^0.720.0"
14+
isort = "^4.3"
15+
black = "==19.3b0"
16+
flake8 = "^3.7"
17+
18+
[build-system]
19+
requires = ["poetry>=0.12"]
20+
build-backend = "poetry.masonry.api"

0 commit comments

Comments
 (0)