forked from pymeasure/pymeasure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (76 loc) · 2.1 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=8.1.0"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint]
extend-select = ["E"]
line-length = 100
[project]
name = "PyMeasure"
dynamic = ["version", "readme"]
authors = [
{name = "PyMeasure Developers"}
]
description = "Scientific measurement library for instruments, experiments, and live-plotting"
requires-python = ">=3.8"
keywords = ["measure", "instrument", "experiment control", "automate", "graph", "plot"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.6.1,<3",
"pandas>=0.14,<3",
"pint",
"pyvisa>=1.9",
"pyserial>=2.7",
"pyqtgraph>=0.12",
]
[project.optional-dependencies]
tcp = [
"pyzmq>=16.0.2",
"cloudpickle>=0.3.1",
]
python-vxi11 = [
"python-vxi11>=0.9",
]
tests = [
"pytest>=3.3.0",
"pytest-cov>=4.1.0",
"pytest-qt>=2.4.0",
"pyvisa-sim>=0.4.0",
]
# install pyqt or pyside manually as desired
docs = [
"sphinx>=5.0.0",
"sphinx_rtd_theme>=1.1.0",
]
[project.urls]
Repository = "https://github.com/pymeasure/pymeasure"
Issues = "https://github.com/pymeasure/pymeasure/issues"
Documentation = "https://pymeasure.readthedocs.io"
[tool.setuptools]
packages = ["pymeasure"]
license-files = ["LICENSE.txt"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CHANGES.rst"]}
[tool.setuptools_scm]
# write_to = "pymeasure/_version.py"
#[tool.flake8]
## See .flake8, as it does not support pyproject.toml
[tool.black]
line-length = 100
[tool.isort]
profile = "black"