-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 1.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "toolbox"
version = "2.1.1.dev1"
description = "Unified toolbox for research workflows."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Sidharth Baskaran" }
]
license = { text = "MIT" }
# Core dependencies (minimal set)
dependencies = [
"click>=8.0.0",
"colorlog>=6.9.0",
"python-dotenv>=0.19.0",
"rich>=14.0.0",
"setuptools==80.9.0",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
# MLToolbox specific dependencies (includes mlt)
mltoolbox = [
"jinja2>=3.1.0",
"tomli>=2.0.0",
"paramiko>=3.5.0",
"colorlog>=6.7.0",
"rich>=13.0.0",
"sqlalchemy>=2.0.0",
"watchdog>=3.0.0", # For mlt sync-lsp daemon
]
# Instancebot specific dependencies
instancebot = [
# No additional dependencies beyond core (uses only stdlib + python-dotenv)
]
# Install all packages
all = [
"toolbox[mltoolbox]",
"toolbox[instancebot]",
]
# Development dependencies
dev = [
"pre-commit>=3.0.0",
]
[project.urls]
Homepage = "https://github.com/sidbaskaran/toolbox"
Repository = "https://github.com/sidbaskaran/toolbox.git"
[project.scripts]
mltoolbox = "mltoolbox.cli:cli"
mlt = "mlt.cli:main"
instancebot = "instancebot.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/mltoolbox", "src/instancebot"]
[tool.hatch.build.targets.wheel.force-include]
"src/mltoolbox/base" = "mltoolbox/base"
"src/mltoolbox/templates" = "mltoolbox/templates"
"src/mlt/mlt" = "mlt"