-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (45 loc) · 1.47 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
[tool.poetry]
name = "awblib"
version = "0.0.3"
description = "A bunch of Automatic White-Balancing (AWB) Algorithm implementations"
authors = ["Joey Teng <joey.teng.dev@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/JoeyTeng/AWB-Lib"
repository = "https://github.com/JoeyTeng/AWB-Lib"
classifiers = [
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
jax = "^0.4.0"
jaxlib = {version = "^0.4.0", source = "jax"}
jaxtyping = [
{version = ">=0.2.13,<0.2.20", python = ">=3.8,<3.9"},
{version = "^0.2.19", python = "^3.9"}
]
numpy = "^1.22.0"
typing_extensions = "^4.3.0"
[tool.poetry.group.dev.dependencies]
matplotlib = "^3.6.2"
pillow = "^9.4.0"
[[tool.poetry.source]]
name = "jax"
url = "https://storage.googleapis.com/jax-releases/jax_releases.html"
priority = "explicit"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/JoeyTeng/AWB-Lib/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"