-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
68 lines (58 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "neetbox"
version = "0.4.13"
description = "Logging/Debugging/Tracing/Managing/Facilitating long running python projects, especially a replacement of tensorboard for deep learning projects"
license = "MIT"
authors = ["VisualDust <[email protected]>", "Lideming <[email protected]>"]
maintainers = [
"PaperCube <[email protected]>",
"PommesPeter <[email protected]>",
"PuQing <[email protected]>",
]
readme = "README.md"
homepage = "https://neetbox.550w.host"
repository = "https://github.com/visualDust/neetbox"
keywords = ["computer vision", "tools", "logging"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Testing",
"Topic :: System :: Logging",
"Topic :: Utilities",
]
include = ["neetbox/frontend_dist/**/*"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
toml = ">0.10"
setproctitle = ">=1.0"
rich = ">=13"
click = "^8.1.7"
pyfiglet = "^1.0.2"
httpx = "^0.27.0"
websocket-client = "^1.6.4"
gputil = "^1.4.0"
psutil = "^6.0.0"
fastapi = "^0.115.0"
python-multipart = "^0.0.12"
uvicorn = "^0.32.0"
websockets = "^12.0"
pyjwt = "^2.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
black = "^24.0.0"
isort = "^5.11.5"
pre-commit = ">=3.4.0"
opencv-python = "^4.8.1.78"
pillow = "^11.0.0"
pytest-cov = "^6.0.0"
[tool.poetry.extras]
torch = ["torch", "torchvision", "torchaudio"]
transformer = ["transformers"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
neet = 'neetbox.cli.parse:main'
[tool.black]
line-length = 100