-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
109 lines (102 loc) · 2.55 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
105
106
107
108
109
[tool.poetry]
name = "wandb-addons"
version = "0.1.0"
description = "Weights & Biases Addons is a repository consisting of additional unitilities and community contributions for supercharging your Weights & Biases workflows"
authors = ["Soumik Rakshit <19soumik.rakshit96@gmail.com>"]
readme = "README.md"
packages = [{ include = "wandb_addons" }]
[tool.poetry.dependencies]
python = ">=3.8.0,<3.12"
wandb = "^0.15.4"
click = "^8.1.3"
tqdm = "^4.65.0"
nbformat = "^5.7.0"
poetry = "^1.5.1"
isort = "^5.12.0"
black = "^23.3.0"
pytest = "^7.3.2"
pre-commit = "^3.3.3"
build = "^0.10.0"
twine = "^4.0.2"
mkdocs = "^1.4.3"
mkdocstrings = { extras = ["python"], version = "^0.22.0" }
mkdocs-material = "^9.1.15"
mkdocs-minify-plugin = "^0.6.4"
mkdocs-glightbox = "^0.3.4"
mkdocs-jupyter = "^0.24.1"
tensorflow-datasets = "^4.9.2"
pillow = "^9.5.0"
monai = { extras = ["ignite", "nibabel", "tensorboard"], version = "^1.2.0" }
ciclo = "^0.1.8"
jupyter = "^1.0.0"
ultralytics = "^8.0.125"
keras-core = { version="^0.1.7", python=">=3.9,<3.12" }
keras-cv = {git = "https://github.com/keras-team/keras-cv"}
diffusers = "^0.21.3"
transformers = "^4.33.3"
accelerate = "^0.23.0"
blacken-docs = "^1.16.0"
weave = {version = "^0.28.0", python = ">=3.9,<3.12"}
ffmpeg-python = "^0.2.0"
imageio = {extras = ["ffmpeg"], version = "^2.33.0"}
pymeshlab = "^2023.12"
open3d-cpu = "^0.17.0"
laspy = "^2.5.1"
k3d = "^2.16.0"
[tool.poetry.extras]
dev = ["isort", "black", "pytest", "pre-commit", "blacken-docs"]
docs = [
"mkdocs",
"mkdocstrings",
"mkdocs-material",
"mkdocs-minify-plugin",
"mkdocs-glightbox",
"mkdocs-jupyter",
"jupyter",
]
deploy = [
"build",
"twine",
"mkdocs",
"mkdocstrings",
"mkdocs-material",
"mkdocs-minify-plugin",
"mkdocs-glightbox",
"mkdocs-jupyter",
]
test = ["pytest"]
dataset = ["tensorflow-datasets", "pillow"]
monai = ["monai"]
jax = ["ciclo", "tensorflow-datasets"]
yolo = ["ultralytics"]
keras = ["keras-core", "keras-cv"]
huggingface = ["diffusers", "transformers", "accelerate", "weave"]
3d = ["pymeshlab", "open3d-cpu", "laspy", "k3d"]
[tool.poetry.scripts]
nb2report = "wandb_addons.report.cli.convert:convert"
[tool.black]
line-length = 88
[tool.flake8]
max-line-length = 88
ignore = [
"E501",
"E203",
"E121",
"E123",
"E126",
"E226",
"E24",
"E501",
"E704",
"W503",
"W504",
"N802",
"N812",
]
[tool.isort]
line_length = 88
known_first_party = ["wandb_addons"]
default_section = "THIRDPARTY"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"