-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (60 loc) · 1.68 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
[project]
name = "XClock"
version = "0.3.1"
description = "Tools for synchronizing eXperimental Clocks"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Joscha Schmiedt", email = "schmiedt@uni-bremen.de" }]
maintainers = [{ name = "Joscha Schmiedt", email = "schmiedt@uni-bremen.de" }]
keywords = [
"synchronization",
"timing",
"experimental",
"daq",
"labjack",
"nidaq",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.12"
dependencies = [
"labjack-ljm>=1.23.0,<2.0.0",
"labjackpython>=2.1.0",
"nidaqmx>=1.0.2,<2.0.0",
"numpy>=2.2.0,<3.0.0",
]
[project.urls]
Homepage = "https://github.com/brain-bremen/XClock"
Repository = "https://github.com/brain-bremen/XClock"
Documentation = "https://xclock.readthedocs.io"
Issues = "https://github.com/brain-bremen/XClock/issues"
Changelog = "https://github.com/brain-bremen/XClock/releases"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.uv]
package = true
[project.scripts]
xclock = "cli.main:main"
xclock-gui = "gui.main:main"
[tool.pyright]
venvPath = "."
venv = ".venv"
[dependency-groups]
dev = [
"matplotlib>=3.10.3",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"sphinx>=7.0.0",
"sphinx-rtd-theme>=2.0.0",
"myst-parser>=2.0.0",
]