-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
104 lines (98 loc) · 2.45 KB
/
pyproject.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[tool.poetry]
name = "deeprootgen"
version = "0.1.0"
description = "A simulation model for the digital reconstruction of 3D root system architectures. Integrated with a simulation-based inference generative deep learning model."
authors = ["James Bristow <james.bristow@plantandfood.co.nz>"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/JBris/deep-root-gen"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
kaleido = "0.2.1"
scikit-learn = "^1.5.1"
numpy = "^1.26.4"
pandas = "^2.2.2"
networkx = "^3.3"
dash = "^2.17.1"
plotly = "^5.23.0"
dash-core-components = "^2.0.0"
dash-html-components = "^2.0.0"
pillow = "^10.4.0"
scipy = "<=1.11.4"
joblib = "^1.4.2"
sqlalchemy = "^2.0.32"
hydra-core = "^1.3.2"
mlflow = "^2.15.1"
alembic = "^1.13.2"
celery = "^5.4.0"
boto3 = "^1.34.162"
botocore = "^1.34.162"
omegaconf = "^2.3.0"
seaborn = "<0.13"
graphviz = "^0.20.3"
prometheus-flask-exporter = "^0.23.1"
prometheus-client = "^0.20.0"
pyyaml = "^6.0.2"
prefect = "^2.20.2"
httpx = "^0.27.0"
pydantic = "^2.8.2"
dask = "^2024.8.0"
prefect-dask = "^0.2.10"
distributed = "^2024.8.0"
optuna = "^3.6.1"
bentoml = {extras = ["aws"], version = "^1.3.7"}
psycopg2-binary = "^2.9.9"
arviz = "^0.19.0"
pymc = "^5.16.2"
pytensor = "^2.25.2"
dash-bootstrap-components = "^1.6.0"
dash-bootstrap-templates = "^1.2.3"
salib = "^1.5.0"
matplotlib = "^3.9.2"
dash-daq = "^0.5.0"
ydata-profiling = "^4.10.0"
adbnx-adapter = "^5.0.3"
python-arango = "<8.0"
pyabc = "^0.12.13"
redis = "^5.0.8"
lampe = "^0.9.0"
swyft = "^0.4.5"
[tool.poetry.group.torch.dependencies]
sbi = "^0.22.0"
torch = "^2.4.0"
pyro-ppl = "^1.9.1"
pyro-api = "^0.1.2"
nflows = "^0.14"
tensorboard = "^2.17.1"
torch-geometric = "^2.5.3"
lightning = "^2.4.0"
gpytorch = "^1.13"
torchcp = "^0.1.3"
[tool.poetry.group.dev.dependencies]
ipython = "<8.26.0"
ipywidgets = "^8.1.3"
jupyter-core = "^5.7.2"
black = "^24.8.0"
pytest = "^8.3.2"
flake8 = "^7.1.1"
coverage = "^7.6.1"
pre-commit = "^3.8.0"
sphinx-rtd-theme = "^2.0.0"
pytest-cov = "^5.0.0"
sphinx = "<8"
autoflake = "^2.3.1"
mypy = "^1.11.1"
sphinx-argparse = "^0.5.2"
sphinxcontrib-applehelp = "^2.0.0"
sphinxcontrib-devhelp = "^2.0.0"
sphinxcontrib-htmlhelp = "^2.1.0"
sphinxcontrib-jsmath = "^1.0.1"
sphinxcontrib-qthelp = "^2.0.0"
sphinxcontrib-serializinghtml = "^2.0.0"
pytest-mock = "^3.14.0"
pytest-xdist = "^3.6.1"
pytest-env = "^1.1.3"
types-pyyaml = "^6.0.12.20240808"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"