-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 945 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 945 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "synapdrive-ai"
version = "0.1.0"
description = "Simulation-first intent-to-safety-to-actuation pipeline for BCI-inspired control"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
dependencies = [
"numpy>=1.23,<3.0",
"flask>=2.3,<4.0",
]
[project.optional-dependencies]
dev = [
"coverage>=7.6.0,<8.0",
"pyright>=1.1.380,<2.0",
"pytest>=7.0,<10.0",
"pytest-cov>=5.0.0,<8.0",
"ruff>=0.6.0,<1.0",
]
[project.scripts]
synapdrive-ai = "synapdrive_ai.main.cli:main"
synapdrive-dashboard = "synapdrive_ai.interface.web_dashboard:main"
[tool.setuptools.packages.find]
include = ["synapdrive_ai*", "core*"]
exclude = ["synapdrive_ai.tests*"]
[tool.setuptools.package-data]
synapdrive_ai = ["interface/templates/*.html"]
[tool.pytest.ini_options]
testpaths = ["synapdrive_ai/tests"]
pythonpath = ["."]