-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1020 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 1020 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
30
31
32
33
34
35
36
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "immdebug"
version = "1.92.601"
description = "Send images to the immdebug viewer for visual debugging — from any Python process"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Pascal Thomet", email = "pthomet@gmail.com" },
]
keywords = ["image", "debugging", "computer-vision", "imgui", "immvision"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Debuggers",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"imgui-bundle",
"glfw",
]
[project.scripts]
immdebug-viewer = "immdebug.viewer:main"
[project.urls]
Homepage = "https://github.com/pthom/immvision"
Repository = "https://github.com/pthom/immvision"
Issues = "https://github.com/pthom/immvision/issues"