mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-08 18:51:37 -05:00
23 lines
443 B
TOML
23 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"
|