This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
87 lines (79 loc) · 2.09 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
80
81
82
83
84
85
86
87
[metadata]
name = hyperion
description = Unattended MX data collection using BlueSky / Ophyd
url = https://github.com/DiamondLightSource/hyperion
license = BSD 3-Clause License
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3.11
[options]
python_requires = >=3.11
packages = find:
package_dir =
=src
install_requires =
#
# If a constraint is not set here or if the dependency is pinned to a hash
# it will be auto-pinned to the latest release version by the pre-release workflow
#
annotated_types
flask-restful
ispyb
nexgen
numpy
opentelemetry-distro
opentelemetry-exporter-jaeger
pydantic
pyepics
pyzmq
scanspec
scipy
semver
#
# These dependencies may be issued as pre-release versions and should have a pin constraint
# as by default pip-install will not upgrade to a pre-release.
#
daq-config-server >= 0.1.1
ophyd == 1.9.0
ophyd-async >= 0.3a5
bluesky >= 1.13.0a4
blueapi >= 0.4.3-rc1
dls-dodal @ git+https://github.com/DiamondLightSource/dodal.git
[options.entry_points]
console_scripts =
hyperion = hyperion.__main__:main
hyperion-callbacks = hyperion.external_interaction.callbacks.__main__:main
hyperion-generate-test-nexus = hyperion.utils.validation:generate_test_nexus
hyperion-populate-test-and-meta-files = hyperion.utils.validation:copy_test_meta_data_files
[options.extras_require]
dev =
ophyd-async
GitPython
black
pytest-cov
pytest-random-order
pytest-asyncio
ipython
mockito
pre-commit
mypy
matplotlib
tox
build
ruff
diff-cover
pyright
pyright_diff_quality_plugin @ git+https://github.com/DiamondLightSource/pyright_diff_quality_plugin.git
[options.packages.find]
where = src
[options.package_data]
hyperion = *.txt
[mypy]
# Ignore missing stubs for modules we use
ignore_missing_imports = True
#needed for opentelemetry
namespace_packages = true
[mypy-opentelemetry.sdk.*]
implicit_reexport = True