-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (36 loc) · 1.01 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
[project]
name = "taichi_image"
version = "0.3.0"
description = "A taichi-based camera ISP pipeline"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
maintainers = [
{name = "Oliver Batchelor", email = "[email protected]" }
]
dependencies = [
"beartype",
"tqdm",
"colour-demosaicing"
]
[tool.setuptools.packages.find]
include = ["taichi_image"]
[project.urls]
"Homepage" = "https://github.com/uc-vision/taichi_image"
[build-system]
requires = ["setuptools>=43.0.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.scripts] # Optional
tonemap_scan = "taichi_image.scripts.tonemap_scan:main"
[options]
dependency_links = ["https://pypi.taichi.graphics/simple/"]
[tool.setuptools.package-data]
[tool.pyright]
reportInvalidTypeForm = "none"
[tool.ruff]
indent-width = 2
[tool.pytest.ini_options]
filterwarnings = [
# disable "UserWarning: The .grad attribute of a Tensor that is not a leaf Tensor"
"ignore::UserWarning"
]