-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 751 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tool.poetry]
name = "Informed Classification"
version = "0.1.0"
description = "Collection of experiments in informed ml/scientific machine learning"
authors = ["Julieanna Bacon <juliealgebra@gmail.com>"]
readme = "README.md"
packages = [{include = "informed_classification"}]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.23.5"
scipy = { version = "^1.9.3", python = ">=3.11,<3.13" }
matplotlib = "^3.6.2"
torch = {version = "^1.13.1", platform = "linux"}
pandas = "^2.1.3"
pre-commit = "^3.6.0"
scikit-learn = "^1.3.2"
seaborn = "^0.13.0"
notebook = "^7.0.6"
pillow = "^10.1.0"
mkdocs = "^1.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"