Skip to content

Instantly share code, notes, and snippets.

@hankehly
Last active September 15, 2022 00:12
Show Gist options
  • Save hankehly/13aa13815fa2e0b83a348bc89dd6c5bd to your computer and use it in GitHub Desktop.
Save hankehly/13aa13815fa2e0b83a348bc89dd6c5bd to your computer and use it in GitHub Desktop.
Blog Article Snippets - How to share private code without exposing it to the world
[tool.poetry]
name = "app"
version = "0.1.0"
description = ""
authors = ["example <example@example.com>"]
[[tool.poetry.source]]
name = "test123_codeartifact"
url = "https://<my_domain>-<account_id>.d.codeartifact.<region>.amazonaws.com/pypi/test123/simple/"
[tool.poetry.dependencies]
test123 = {version = "0.0.1", source = "test123_codeartifact"}
requests = "*"
pandas = "*"
[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