-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 890 Bytes
/
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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "lecroyscope"
authors = [
{ name = "Luis Antonio Obis Aparicio", email = "[email protected]" },
]
description = "An unofficial Python package 🐍📦 to interface with Teledyne LeCroy oscilloscopes and read binary trace files (.trc)"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"python-vxi11",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest",
]
[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"