This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
88 lines (76 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "pyleco-extras"
authors = [
{ name="Benedikt Burger" },
]
dynamic = ["version"]
description = "Extras for the python reference implementation of the Laboratory Experiment COntrol (LECO) protocol"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: System :: Networking",
]
requires-python = ">=3.9"
dependencies = [
"pyleco>=0.2.0",
"pint",
"numpy",
]
[project.optional-dependencies]
gui = [
"qtpy",
"pyqtgraph",
]
devices = [
"PyTrinamic>=0.2"
]
dev = [
'pytest',
'pytest-cov',
'pytest-qt',
'sphinx',
'sphinx_rtd_theme',
]
tests = [
'PyQt6',
'pymeasure>=0.13',
"PyTrinamic>=0.2",
]
[project.urls]
"Homepage" = "https://github.com/BenediktBurger/pyleco-extras"
"Bug Tracker" = "https://github.com/BenediktBurger/pyleco-extras/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm>=7.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# write_to = "pyleco_extras/_version.py"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[tool.ruff]
select = ["E", "F", "W"]
line-length = 100
exclude = [
".git",
".venv",
"__pypackages__",
"__pycache__",
"build",
"dist",
"docs/conf.py",
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[mypy]
[tool.coverage.run]
branch = true
omit = [
"requirements",
]