forked from bbo-lab/ACM-traingui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 855 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
37
38
39
40
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bbo-labelgui"
dynamic = ["version"]
description = "GUI for guided data labeling"
readme = "README.md"
license = "LGPL-3.0-or-later"
authors = [
{ name = "BBO-lab @ caesar", email = "kay-michael.voit@mpinb.mpg.de" },
]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"bbo-bbo>=0.1.0",
"bbo_ccvtools",
"bbo_svidreader",
"imageio",
"matplotlib",
"numpy",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/bbo-lab/acm-traingui"
[tool.hatch.version]
path = "labelgui/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/labelgui",
]
[tool.hatch.build.targets.wheel]
packages = ["labelgui"]