-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 1.58 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
73
74
75
76
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
packages = [
"bridge"
]
[project]
name = "neuron-bridge"
version = "0.3.0"
authors = [
{ name = "mateusz-kow", email = "kowalski.mateusz.1lo1@gmail.com" },
]
description = "A versatile bridge application and SDK for connecting with EEG devices."
readme = "README.md"
requires-python = ">=3.11.0, <3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy~=1.26.4",
]
[project.optional-dependencies]
server = [
"websockets~=12.0",
]
fif = [
"mne~=1.6.1",
"scipy<1.15.0"
]
dev = [
"websockets~=12.0",
"pandas~=2.3.2",
"mne~=1.6.1",
"scipy<1.15.0",
"matplotlib~=3.10.6",
"black~=25.1.0",
"ruff~=0.13.0",
"pytest~=8.4.2",
"pytest-asyncio~=1.2.0",
"pytest-mock~=3.15.0",
"mypy~=1.18.1",
"hatchling~=1.27.0",
"twine~=6.2.0",
"pre-commit~=4.2.0",
]
[project.urls]
Homepage = "https://github.com/KN-Neuron/Bridge"
Issues = "https://github.com/KN-Neuron/Bridge/issues"
[project.scripts]
bridge-server = "server.cli:run_server_cli"
[tool.ruff]
line-length = 120
lint.select = ["E", "F", "W", "I", "C90"]
[tool.black]
line-length = 120
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
strict = true
ignore_missing_imports = true
exclude = ["tests/"]