Skip to content

Instantly share code, notes, and snippets.

@ntaylorwss
Created February 25, 2024 21:40
Show Gist options
  • Save ntaylorwss/69cc7b9836047c5f69fbd263191d1210 to your computer and use it in GitHub Desktop.
Save ntaylorwss/69cc7b9836047c5f69fbd263191d1210 to your computer and use it in GitHub Desktop.
Poetry GAR issue
[tool.black]
line-length = 100
preview = true
[tool.poetry]
name = "mypackage"
version = "0.0.0"
description = ""
authors = []
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "private"
url = "https://us-central1-python.pkg.dev/my-project/my-repo/simple"
priority = "supplemental"
[tool.poetry.dependencies]
python = "^3.12"
my-dependency = { version = "^0.0.0", source = "private" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment