-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
79 lines (70 loc) · 1.86 KB
/
setup.cfg
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
[metadata]
name = plottr
description = A tool for live plotting and processing data
long_description = file: README.md
long_description_content_type = text/markdown
author = Wolfgang Pfaff
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
license = MIT
url = https://github.com/toolsforexperiments/plottr
project_urls =
Documentation = https://plottr.readthedocs.io
Source = https://github.com/toolsforexperiments/plottr/
Tracker = https://github.com/toolsforexperiments/plottr/issues
[options]
packages = find:
python_requires = >=3.7
install_requires =
pandas>=0.22
xarray
pyqtgraph>=0.10.0
matplotlib>=3.0.0
numpy>=1.12.0
lmfit>=1.0
h5py>=2.10.0
qtpy>=1.9.0
typing-extensions>=3.7.4.3
packaging>=20.0
[options.package_data]
plottr =
resource/gfx/*
py.typed
[options.extras_require]
PyQt5 = PyQt5
PySide2 = PySide2>=5.12
[options.packages.find]
include =
plottr*
[options.entry_points]
console_scripts =
plottr-monitr = plottr.apps.monitr:script
plottr-inspectr = plottr.apps.inspectr:script
plottr-autoplot-ddh5 = plottr.apps.autoplot:script
[versioneer]
VCS = git
style = pep440
versionfile_source = plottr/_version.py
versionfile_build = plottr/_version.py
tag_prefix = v
parentdir_prefix = plottr-
[mypy]
strict_optional = True
ignore_missing_imports = True
show_column_numbers = True
warn_unused_ignores = True
warn_unused_configs = True
warn_redundant_casts = True
no_implicit_optional = True
[mypy-plottr.*]
disallow_untyped_defs = True
[mypy-plottr._version]
ignore_errors = True