-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 990 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "image_utils"
version = "0.0.1"
authors = [{ name="Alexander Swerdlow", email="[email protected]" }]
description = "A utility library for common image and video operations."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch",
"torchvision",
"opencv-python>=4.5",
"numpy>=1.22",
"pillow>=9.0.0",
"einops>=0.6.0",
"jaxtyping>=0.2.19"
]
[project.optional-dependencies]
VIDEO = ["av>=10.0.0", "imageio[ffmpeg]>=2.23.0"]
PROC = ["joblib>=1.2.0"]
DEV = ["pytest", "pytest-cov", "lovely-tensors>=0.1.14", "lovely-numpy>=0.2.8"]
ALL = ["image_utils[VIDEO,PROC,DEV]"]
[project.urls]
Homepage = "https://github.com/alexanderswerdlow/image_utils"
[tool.black]
line-length = 150
target-version = ['py310']