mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
16 lines
388 B
TOML
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"
|