-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (73 loc) · 2.61 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
[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 = [
"pyinstaller==6.11.1",
]
[tool.hatch.envs.default.scripts]
exe = "pyinstaller.exe ephys_link.spec -y -- -d && pyinstaller.exe ephys_link.spec -y"
exe-clean = "pyinstaller.exe ephys_link.spec -y --clean"
[tool.hatch.envs.docs]
python = "3.13.1"
skip-install = true
dependencies = [
"mkdocs-material==9.5.49",
"mkdocstrings-python==1.12.2",
]
[tool.hatch.envs.docs.scripts]
serve = "mkdocs serve"
build = "mkdocs build"
[tool.ruff.lint]
extend-ignore = ["DTZ005"]