-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrated requirements into poetry dependencies
- Loading branch information
1 parent
c639513
commit b4e187f
Showing
2 changed files
with
195 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[tool.poetry] | ||
name = "sammy" | ||
version = "0.1.0" | ||
description = "Python library for generating AWS SAM (Serverless Application Model) templates with validation." | ||
authors = ["Brian Jinwright"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
boto3 = ">=1.9.93" | ||
PyYAML = ">=3.12" | ||
valley = ">=1.5.2" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] |