test_flake_poetry2nix/pyproject.toml

32 lines
779 B
TOML

[tool.poetry]
name = "test_flake_poetry2nix"
version = "0.1.0"
description = "Test with poetry2nix and flakes"
authors = ["Histausse"]
readme = "README.md"
homepage = "https://git.pains-perdus.fr/histausse/test_flake_poetry2nix"
repository = "https://git.pains-perdus.fr/histausse/test_flake_poetry2nix"
license = "Proprietary"
[tool.poetry.urls]
"Bug Tracker" = "https://git.pains-perdus.fr/histausse/test_flake_poetry2nix/issues"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.24.3"
matplotlib = "^3.7.1"
[tool.poetry.scripts]
test = "test_flake_poetry2nix.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
[tool.pytest.ini_options]
addopts = "--cov"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"