-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (32 loc) · 898 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]
[project]
name = "pytektronix"
version = "1.0.0"
authors = [
{ name="Matteo Vidali", email="[email protected]" },
{ name="Barrett Tieman", email="[email protected]" },
]
description = "A python package for controlling tektronix scopes"
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyvisa-py==0.5.3",
"aenum==3.1.11",
"python-vxi11==0.9",
]
[project.urls]
"Homepage" = "https://github.com/matteovidali/pytektronix"
"Bug Tracker" = "https://github.com/matteovidali/pytektronix/issues"
"Documentation" = "https://matteovidali.github.io/pytektronix/"