-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
60 lines (51 loc) · 1.28 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
[metadata]
name = pqc
version = attr: pqc.__version__
description = Process Quality Control for CMS outer tracker.
long_description = file: README.md
long_description_content_type = text/markdown
author = Bernhard Arnold
author_email = bernhard.arnold@oeaw.ac.at
url = https://github.com/hephy-dd/diode-measurement
license = GPLv3
classifiers =
Framework :: PyQt5
Programming Language :: Python :: 3
[options]
python_requires = >=3.8
packages = find:
install_requires =
comet @ git+https://github.com/hephy-dd/comet.git@0.13.2
analysis-pqc @ git+https://github.com/hephy-dd/analysis-pqc.git@0.8.1
PyVISA==1.11.*
PyVISA-py==0.5.*
PyQt5==5.15.9
PyQtChart==5.15.6
PyYAML==6.0.1
jsonschema==3.2.0
flask==2.3.2
waitress==2.1.2
include_package_data = True
[options.packages.find]
exclude = tests
[options.package_data]
pqc.assets.config.chuck = *.yaml
pqc.assets.config.sample = *.yaml
pqc.assets.config.sequence = *.yaml
pqc.assets.icons = *.svg
pqc.assets.schema =
chuck.yaml
sample.yaml
sequence.yaml
[options.entry_points]
console_scripts =
pqc = pqc.__main__:main
[flake8]
ignore = E501
[mypy]
[mypy-pint.*]
ignore_missing_imports = True
[mypy-comet.*]
ignore_missing_imports = True
[mypy-analysis_pqc.*]
ignore_missing_imports = True