-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.68 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pymindwave2"
version = "1.0.0"
requires-python = ">=3.10"
description = "A Python package for seamless communication with Neurosky MindWave Mobile 2 headset."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Ahmed Mohsen", email = "ahmed25004@hotmail.com" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
]
keywords = [
'bci',
'brain-computer interface',
'brainwaves',
'eeg',
'headset',
'mind control',
'mindwave',
'mindwave mobile',
'mindwave mobile 2',
'mindwavemobile',
'mindwavemobile2',
'motor imagery',
'neuroscience',
'neurosky',
]
[project.urls]
Homepage = "https://github.com/PrinceEGY/pymindwave2"
Issues = "https://github.com/PrinceEGY/pymindwave2/issues"
Documentation = "https://princeegy.github.io/pymindwave2/"
[tool.setuptools]
package-dir = { "pymindwave2" = "mindwave" }
[tool.pytest.ini_options]
timeout = 300
asyncio_default_fixture_loop_scope = "session"
[tool.flake8]
statistics = true
count = true
max-complexity = 10
max-line-length = 120
per-file-ignores = ["tests/*: D", "*/__init__.py: F401, D"]
ignore = ["E203", "W503", "D105"]
docstring-convention = "google"
exclude = [
".git",
"__pycache__",
"build",
"dist",
"venv",
".venv",
".vscode",
".idea",
]