-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.36 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
[project]
name = "diode-measurement"
description = "IV/CV measurements for silicon sensors."
readme = "README.md"
authors = [{name = "Bernhard Arnold", email = "bernhard.arnold@oeaw.ac.at"}]
license = {text = "GPLv3"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware",
]
requires-python = ">=3.9"
dependencies = [
"PySide6~=6.10.2",
"PyVISA==1.14.*",
"PyVISA-py==0.7.*",
"pint==0.24.*",
"json-rpc~=1.15"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/hephy-dd/diode-measurement/"
Source = "https://github.com/hephy-dd/diode-measurement/"
[project.scripts]
diode-measurement = "diode_measurement.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["diode_measurement*"]
[tool.setuptools.dynamic]
version = {attr = "diode_measurement.__version__"}
[tool.setuptools.package-data]
"diode_measurement.assets.icons" = ["*.svg", "*.ico"]
[tool.mypy]
[[tool.mypy.overrides]]
module = ["jsonrpc.*"]
ignore_missing_imports = true