poetry2nix/tools/pyproject.toml
adisbladis b4d2477b1f Add a basic python environment for tooling to nix-shell
I want to start formatting all Python code in the repository with black, let's dogfood this and use poetry2nix to provide it.
2022-01-12 18:48:06 +13:00

16 lines
330 B
TOML

[tool.poetry]
name = "poetry2nix-tools-env"
version = "0.1.0"
description = ""
authors = ["adisbladis <adisbladis@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
black = "^21.12b0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"