22requires = [" setuptools>=64" , " wheel" , " setuptools_scm>=8" , " cython" ]
33build-backend = " setuptools.build_meta"
44
5- [tool .setuptools_scm ]
5+ [tool .setuptools_scm ]
6+ version_scheme = " release-branch-semver"
7+ local_scheme = " no-local-version"
8+
9+ [tool .setuptools ]
10+ zip-safe = false
11+ include-package-data = true
12+
13+ [tool .setuptools .packages ]
14+ find = {namespaces = false }
15+
16+
17+ [project ]
18+ name = " runviewer"
19+ description = " A program to view shots compiled by labscript"
20+ authors = [
21+ {
name =
" The labscript suite community" ,
email =
" [email protected] " },
22+ ]
23+ keywords = [" experiment control" , " automation" ]
24+ license = {file = ' LICENSE.txt' }
25+ classifiers = [
26+ " License :: OSI Approved :: BSD License" ,
27+ " Programming Language :: Python :: 3 :: Only" ,
28+ " Programming Language :: Python :: 3.6" ,
29+ " Programming Language :: Python :: 3.7" ,
30+ " Programming Language :: Python :: 3.8" ,
31+ " Programming Language :: Python :: 3.9" ,
32+ " Programming Language :: Python :: 3.10" ,
33+ " Programming Language :: Python :: 3.11" ,
34+ ]
35+ requires-python = " >=3.6"
36+ dependencies = [
37+ " desktop-app>=0.1.2" ,
38+ " importlib_metadata" ,
39+ " labscript_utils>=3.1.0b1" ,
40+ " labscript-c-extensions" ,
41+ " pyqtgraph>=0.11.1" ,
42+ " qtutils>=2.0.0" ,
43+ " zprocess" ,
44+ " numpy>=1.15" ,
45+ " scipy" ,
46+ " h5py" ,
47+ ]
48+ dynamic = [" version" ]
49+
50+ [project .readme ]
51+ file = " README.md"
52+ content-type = " text/markdown"
53+
54+ [project .urls ]
55+ Homepage = " http://labscriptsuite.org/"
56+ Documentation = " https://docs.labscriptsuite.org/"
57+ Repository = " https://github.com/labscript-suite/runviewer/"
58+ Downloads = " https://github.com/labscript-suite/runviewer/releases/"
59+ Tracker = " https://github.com/labscript-suite/runviewer/issues/"
60+
61+ [project .optional-dependencies ]
62+ docs = [
63+ " PyQt5" ,
64+ " Sphinx==7.2.6" ,
65+ " sphinx-rtd-theme==2.0.0" ,
66+ " myst_parser==2.0.0" ,
67+ ]
68+
69+ [project .scripts ]
70+ runviewer = " desktop_app:entry_point"
71+
72+ [project .gui-scripts ]
73+ runviewer-gui = " desktop_app:entry_point"
0 commit comments