poetry2nix/tests/aiopath/pyproject.toml
2023-10-24 16:59:09 -04:00

16 lines
385 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.8"
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-core"]
build-backend = "poetry.core.masonry.api"