-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (29 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
29 lines (29 loc) · 829 Bytes
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
[project]
name = "vsl_ial"
dynamic = ["version"]
authors = [
{ name="Arseniy Terekhin", email="senyai@gmail.com" },
{ name="Dmitry Nikolaev" },
{ name="Olga Basova" },
{ name="Valerii Timofeev" },
]
description = "Color spaces made reasonable"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
readme = "README.md"
license = "MIT"
dependencies = ["numpy"]
[project.urls]
"Homepage" = "https://github.com/iitpvisionlab/vsl_ial"
"Bug Reports" = "https://github.com/iitpvisionlab/vsl_ial/issues"
"Source" = "https://github.com/iitpvisionlab/vsl_ial"
[project.optional-dependencies]
extra = ["rich", "json5", "pydantic"]
[tool.setuptools.dynamic]
version = {attr = "vsl_ial.__version__"}
[tool.black]
line-length = 79
target-version = ["py310"]