forked from ScopeFoundry/ScopeFoundry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (72 loc) · 2.62 KB
/
setup.py
File metadata and controls
73 lines (72 loc) · 2.62 KB
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
from setuptools import setup
setup(
name="ScopeFoundry",
version="2.2.1",
description="a platform for laboratory equipment control and scientific data analysis",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
# Author details
author="Edward S. Barnard",
author_email="esbarnard@lbl.gov",
# Choose your license
license="BSD",
url="https://www.scopefoundry.org/",
package_dir={"ScopeFoundry": "."},
packages=[
"ScopeFoundry",
"ScopeFoundry.base_app",
"ScopeFoundry.base_app.icons",
"ScopeFoundry.controlling",
"ScopeFoundry.controlling.pid_feedback_control_measure_docs",
"ScopeFoundry.controlling.ranged_optimization_docs",
"ScopeFoundry.data_browser",
"ScopeFoundry.data_browser.viewers",
"ScopeFoundry.data_browser.plug_ins",
"ScopeFoundry.dynamical_widgets",
"ScopeFoundry.examples",
"ScopeFoundry.examples.ScopeFoundryHW",
"ScopeFoundry.examples.ScopeFoundryHW.bsinc_noiser200",
"ScopeFoundry.examples.ScopeFoundryHW.simulon_xyz_stage",
"ScopeFoundry.examples.docs",
"ScopeFoundry.examples.measurements",
"ScopeFoundry.examples.measurements.example_2d_slowscan_measure_docs",
"ScopeFoundry.examples.measurements.example_3d_slowscan_measure_docs",
"ScopeFoundry.graphics",
"ScopeFoundry.graphics.zoomable_map",
"ScopeFoundry.logged_quantity",
"ScopeFoundry.scanning",
"ScopeFoundry.sequencer",
"ScopeFoundry.sequencer.item_types",
"ScopeFoundry.sequencer.sequencer_docs",
"ScopeFoundry.sequencer.sweep_sequencer_docs",
"ScopeFoundry.sweeping",
"ScopeFoundry.sweeping.sweep_1D_docs",
"ScopeFoundry.sweeping.sweep_2D_docs",
"ScopeFoundry.sweeping.sweep_3D_docs",
"ScopeFoundry.sweeping.sweep_4D_docs",
"ScopeFoundry.tools",
"ScopeFoundry.tools.features",
"ScopeFoundry.tools.templates",
"ScopeFoundry.tools.pages",
],
package_data={
"": [
"*.ui",
"*.icns",
"*.png",
"*.svg",
"*.qss",
# for ScopeFoundry tools
"_LICENSE",
"*.md",
"**/default_settings.ini",
"**/defaults.ini",
"**/sweep_h_centers.json",
"**/.gitignore",
# for docs
"*links.json",
]
},
install_requires=["numpy", "h5py", "uuid7", "qtpy", "pyqtgraph"],
extras_require={"all": ["PyQt6", "qtconsole", "pyqtdarktheme", "matplotlib"]},
)