poetry2nix/tests/aiopath/pyproject.toml
2021-12-29 12:34:32 -05:00

16 lines
388 B
TOML

[tool.poetry]
name = "test-aiopath"
version = "0.1.0"
description = "Test of aiopath package"
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
aiopath = [
{ version = "0.5.12", python = ">=3.7,<3.10" },
{ version = ">0.5.12,<0.7", python = ">=3.10,<3.11" }
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"