-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (49 loc) · 1.08 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
[tool.poetry]
name = "veriflow"
version = "0.1.0"
description = ""
authors = ["Faried Abu Zaid <[email protected]>"]
readme = "README.md"
packages = [{include = "src"}, {include = "scripts"}]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pyro-ppl = "^1.8.5"
scikit-learn = "^1.4.0"
ray = "==2.9.1"
pandas = "^2.0.3"
pyarrow = "^12.0.1"
click = "^8.1.6"
tensorboardx = "^2.6.1"
idx2numpy = "^1.2.3"
numpy = "^1.25.1"
torch = "~2.0.1"
torchaudio = "~2.0.2"
fsspec = "^2023.6.0"
rise = "^5.7.1"
onnx = "^1.14.1"
matplotlib = "^3.8.0"
sphinxcontrib-napoleon = "^0.7"
jupyter-server = "^2.10.1"
plotly = "^5.18.0"
kaleido = "0.2.1"
bayesian-optimization = "^1.4.3"
tensorboard = "^2.15.1"
torchvision = "~0.15.2"
traitlets = "5.9.0"
sympy = "^1.12"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
matplotlib = "^3.7.2"
jupyter-contrib-nbextensions = "^0.7.0"
jupyter = "^1.0.0"
notebook = "6.4.8"
spellchecker = "^0.4"
tensorboard = "^2.14.0"
tox = "^4.11.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests",
]