File size: 549 Bytes
795f737
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"

[project]
name = "baim"
version = "0.0.1"
description = "Experimental CPU-first browser action intelligence"
requires-python = ">=3.12"
dependencies = []

[project.optional-dependencies]
browser = ["playwright>=1.48", "psutil>=6"]
training = ["torch>=2.5", "huggingface-hub>=0.26", "safetensors>=0.4"]
research = ["transformers>=5.0", "torch>=2.5", "psutil>=6"]

[tool.setuptools.packages.find]
include = ["baim*"]

[tool.setuptools.package-data]
baim = ["*.js"]