Skip to content

Instantly share code, notes, and snippets.

@bplotnick
Created October 8, 2022 18:23
Show Gist options
  • Save bplotnick/7707e53f3e0eee037c92b53909115f0e to your computer and use it in GitHub Desktop.
Save bplotnick/7707e53f3e0eee037c92b53909115f0e to your computer and use it in GitHub Desktop.
relative deps
[tool.poetry]
name = "foo"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
bar = { path = "../bar", develop = false }
baz = "^1.0.0"
[tool.poetry.dev-dependencies]
bar = { path = "../bar", develop = true }
[tool.poetry.scripts]
quux = "foo.quux:main"
[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