22requires = [" setuptools>=64" , " wheel" , " setuptools_scm>=8" ]
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 = " runmanager"
19+ description = " Graphical control of parameterised experiments composed in 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>=3.0.0" ,
40+ " labscript_utils>=3.3.0" ,
41+ " pandas>=0.13" ,
42+ " qtutils>=2.2.2" ,
43+ " matplotlib" ,
44+ ]
45+ dynamic = [" version" ]
46+
47+ [project .readme ]
48+ file = " README.md"
49+ content-type = " text/markdown"
50+
51+ [project .urls ]
52+ Homepage = " http://labscriptsuite.org/"
53+ Documentation = " https://docs.labscriptsuite.org/"
54+ Repository = " https://github.com/labscript-suite/runmanager/"
55+ Downloads = " https://github.com/labscript-suite/runmanager/releases/"
56+ Tracker = " https://github.com/labscript-suite/runmanager/issues/"
57+
58+ [project .optional-dependencies ]
59+ docs = [
60+ " PyQt5" ,
61+ " Sphinx==7.2.6" ,
62+ " sphinx-rtd-theme==2.0.0" ,
63+ " myst_parser==2.0.0" ,
64+ ]
65+
66+ [project .scripts ]
67+ runmanager = " desktop_app:entry_point"
68+
69+ [project .gui-scripts ]
70+ runmanger-gui = " desktop_app:entry_point"
0 commit comments