-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
46 lines (41 loc) · 947 Bytes
/
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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 79
[tool.poetry]
name = "xfuse"
version = "0.2.1"
description = "Deep spatial data fusion"
authors = ["Ludvig Bergenstråhle <[email protected]>"]
[tool.poetry.dependencies]
click = "^7.1.2"
h5py = "^3.0.0"
imageio = "^2.9.0"
matplotlib = "^3.3.2"
numpy = "^1.19.4"
opencv-python = "^4.4.0"
pandas = "^1.1.4"
Pillow = "^9.0.1"
pyro-ppl = ">=1.5.0,<1.6.0"
python = "^3.8"
scikit-learn = "^0.24.2"
scipy = "^1.5.4"
tensorboard = "^2.5.0"
tifffile = "^2020.10.1"
tomlkit = "^0.7.0"
torch = "^1.8.1"
torchvision = "^0.9.1"
tqdm = "^4.51.0"
tabulate = "^0.8.7"
[tool.poetry.dev-dependencies]
mypy = "^0.812"
pre-commit = "^2.8.2"
pylint = "^2.8.2"
pytest = "^6.1.2"
pytest-console-scripts = "^1.0.0"
pytest-cov = "^2.10.1"
pytest-datadir = "^1.3.1"
pytest-mock = "^3.3.1"
[tool.poetry.scripts]
xfuse = "xfuse.__main__:cli"