Created
May 28, 2021 02:34
-
-
Save MasterNayru/602f564ca19c68906fdb3c5a1eba2818 to your computer and use it in GitHub Desktop.
My test pyproject.toml
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
[tool.poetry] | |
name = "mynewpackage" | |
version = "0.1.0" | |
description = "New package that does stuff" | |
authors = ["Jarrod Moore <jarrod.moore@deckard.com>"] | |
[tool.poetry.dependencies] | |
python = "^3.6.2,<4.0" | |
pulumi = "^2.21.1" | |
yamale = "^3.0.4" | |
pulumi-aws = "^3.29.1" | |
[tool.poetry.dev-dependencies] | |
pytest = ">=6" | |
pre-commit = "*" | |
black = "*" | |
[[tool.poetry.source]] | |
name = "codeartifact" | |
url = "https://deckard-11111111111.d.codeartifact.us-west-2.amazonaws.com/pypi/pypi-deckard/simple/" | |
default = true | |
[build-system] | |
requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment