-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (46 loc) · 1.05 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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "lecroyscope"
authors = [
{ name = "Luis Antonio Obis Aparicio", email = "[email protected]" },
]
requires-python = ">=3.8"
description = "An unofficial Python package 🐍📦 to interface with Teledyne LeCroy oscilloscopes and read binary trace files (.trc)"
readme = "README.md"
license = "BSD-3-Clause"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = [
"lecroy",
"scope",
"oscilloscope",
"vxi11",
"binary",
"trc",
]
dependencies = [
"numpy",
"python-vxi11",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"pytest", "pre-commit", "uproot", "awkward",
]
[project.urls]
"Download" = "https://github.com/lobis/lecroy-scope/releases"
"Homepage" = "https://github.com/lobis/lecroy-scope"
"Bug Tracker" = "https://github.com/lobis/lecroy-scope/issues"
[tool.hatch.version]
path = "src/lecroyscope/version.py"