22 lines
508 B
TOML
22 lines
508 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "merlin"
|
|
version = "0.1.0"
|
|
description = "Merlin — BCI and alternative input training harness (BSL 1.1)"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"circuitforge-core[gestures-mediapipe]",
|
|
"fastapi>=0.110",
|
|
"uvicorn[standard]>=0.29",
|
|
"scikit-learn>=1.4",
|
|
"joblib>=1.3",
|
|
"pyyaml>=6.0",
|
|
"pyautogui>=0.9",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["merlin*"]
|