-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "easy-scpi"
dynamic = ["version"]
description = "An easy library for controlling SCPI instruments."
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["scpi"]
authors = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = ["pyvisa"]
[project.optional-dependencies]
tests = ["pyvisa-sim"]
[project.urls]
Issues = "https://github.com/bicarlsen/easy-scpi/issues"
Source = "https://github.com/bicarlsen/easy-scpi"
Homepage = "https://github.com/bicarlsen/easy-scpi"
[tool.hatch.version]
path = "src/easy_scpi/__about__.py"
[tool.hatch.build.targets.sdist]
exclude = []
[tool.hatch.build.targets.wheel]
packages = ["src/easy_scpi"]
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]