-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 2.03 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "toonic"
dynamic = ["version"]
description = "Toonic — Universal TOON Format Platform for LLM-optimized file representations"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{name = "Tom Sapletta", email = "tom@sapletta.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
[project.optional-dependencies]
video = ["opencv-python>=4.8"]
audio = ["numpy>=1.24", "webrtcvad>=2.0"]
server = ["fastapi>=0.110", "uvicorn>=0.27", "pyyaml>=6.0", "httpx>=0.27", "websockets>=12.0"]
llm = ["litellm>=1.30"]
detection = ["ultralytics>=8.0", "opencv-python>=4.8"]
monitoring = ["httpx>=0.27", "pyyaml>=6.0"]
cctv = ["opencv-python>=4.8", "ultralytics>=8.0", "fastapi>=0.110", "uvicorn>=0.27", "pyyaml>=6.0", "httpx>=0.27", "websockets>=12.0", "litellm>=1.30"]
all = ["opencv-python>=4.8", "numpy>=1.24", "webrtcvad>=2.0", "ultralytics>=8.0", "fastapi>=0.110", "uvicorn>=0.27", "pyyaml>=6.0", "httpx>=0.27", "websockets>=12.0", "litellm>=1.30"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.23", "pytest-cov>=4.0", "pyyaml>=6.0", "numpy>=1.24", "fastapi>=0.110", "uvicorn>=0.27", "httpx>=0.27", "websockets>=12.0"]
[project.scripts]
toonic = "toonic.cli:cli_main"
toonic-server = "toonic.server.__main__:main"
toonic-client = "toonic.server.client:main"
[project.urls]
Homepage = "https://github.com/wronai/toonic"
Repository = "https://github.com/wronai/toonic"
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.setuptools.packages.find]
include = ["toonic*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"