16 lines
305 B
TOML
16 lines
305 B
TOML
[tool.poetry]
|
|
name = "foobar"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = []
|
|
readme = "README.md"
|
|
packages = [{include = "foobar"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
bazz = { path = "./bazz", develop = true }
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|