-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
117 lines (107 loc) · 3.37 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ephys-link"
dynamic = ["version"]
description = "A Python Socket.IO server that allows any Socket.IO-compliant application to communicate with manipulators used in electrophysiology experiments."
readme = "README.md"
requires-python = ">=3.10, <3.14"
license = "GPL-3.0-only"
keywords = ["socket-io", "manipulator", "electrophysiology", "ephys", "sensapex", "neuroscience", "neurotech", "virtualbrainlab", "new-scale"]
authors = [{ name = "Kenneth Yang", email = "[email protected]" }]
maintainers = [{ name = "Kenneth Yang", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"aiohttp==3.11.11",
"colorama==0.4.6",
"packaging==24.2",
"platformdirs==4.3.6",
"pyserial==3.5",
"python-socketio[asyncio_client]==5.12.0",
"requests==2.32.3",
"sensapex==1.400.3",
"rich==13.9.4",
"vbl-aquarium==0.0.23"
]
[project.urls]
Documentation = "https://virtualbrainlab.org/ephys_link/installation_and_use.html"
Issues = "https://github.com/VirtualBrainLab/ephys-link/issues"
Source = "https://github.com/VirtualBrainLab/ephys-link"
[project.scripts]
ephys-link = "ephys_link.__main__:main"
ephys_link = "ephys_link.__main__:main"
el = "ephys_link.__main__:main"
[tool.hatch.version]
path = "src/ephys_link/__about__.py"
[tool.hatch.build.targets.sdist]
exclude = ["/.github", "/.idea"]
[tool.hatch.envs.default]
python = "3.13.1"
dependencies = [
# "coverage[toml]>=6.5",
# "pytest",
]
#[tool.hatch.envs.default.scripts]
#test = "pytest {args:tests}"
#test-cov = "coverage run -m pytest {args:tests}"
#cov-report = [
# "- coverage combine",
# "coverage report",
#]
#cov = [
# "test-cov",
# "cov-report",
#]
[tool.hatch.envs.exe]
python = "3.13"
dependencies = [
"pyinstaller",
]
[tool.hatch.envs.exe.scripts]
build = "pyinstaller.exe ephys_link.spec -y -- -d && pyinstaller.exe ephys_link.spec -y"
build_onefile = "pyinstaller.exe ephys_link.spec -y"
build_clean = "pyinstaller.exe ephys_link.spec -y --clean"
[tool.hatch.envs.types]
python = "3.13"
skip-install = true
dependencies = [
"mypy",
]
[tool.hatch.envs.types.scripts]
check = "mypy --strict --install-types --non-interactive --ignore-missing-imports {args:src/ephys_link tests}"
#[tool.coverage.run]
#source_pkgs = ["ephys_link", "tests"]
#branch = true
#parallel = true
#omit = [
# "src/ephys_link/__about__.py",
#]
#
#[tool.coverage.paths]
#ephys_link = ["src/ephys_link", "*/ephys-link/src/ephys_link"]
#tests = ["tests", "*/ephys-link/tests"]
#
#[tool.coverage.report]
#exclude_lines = [
# "no cov",
# "if __name__ == .__main__.:",
# "if TYPE_CHECKING:",
#]
[tool.ruff.lint]
extend-ignore = ["DTZ005"]