poetry2nix/tests/scientific/pyproject.toml
K900 673ba1f7cc treewide: another pile of assorted changes
- update pinned nixpkgs used for tests
- fix the rest of the setuptools fallout
- add and test some scientific packages
2022-10-09 11:33:01 +13:00

22 lines
443 B
TOML

[tool.poetry]
name = "scientific_test"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "*"
scipy = "*"
scikit-learn = "*"
matplotlib = "*"
seaborn = "*"
pandas = "*"
jupyter = "*"
# FIXME: pin a lower version until we figure out how to build newer ones
nbconvert = "<7"
[build-system]
requires = ["poetry-core>=1.1"]
build-backend = "poetry.core.masonry.api"