mirror of
https://github.com/NixOS/templates.git
synced 2026-01-14 10:18:27 +01:00
17 lines
No EOL
338 B
TOML
17 lines
No EOL
338 B
TOML
[tool.poetry]
|
|
name = "sample-project"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Author Name <author@example.com>"]
|
|
# readme = "README.md"
|
|
# license = "BSD"
|
|
packages = [
|
|
{ include = "sample_package" }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api" |