2
2
requires = [" setuptools>=64" , " wheel" , " setuptools_scm>=8" ]
3
3
build-backend = " setuptools.build_meta"
4
4
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 = " lyse"
19
+ description = " Automated analysis queue for labscript suite experiments"
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
+ " h5py" ,
39
+ " importlib_metadata" ,
40
+ " labscript_utils>=3.3.0" ,
41
+ " matplotlib" ,
42
+ " numpy" ,
43
+ " pandas>=0.21" ,
44
+ " qtutils>=2.2.2" ,
45
+ " scipy" ,
46
+ " tzlocal" ,
47
+ " zprocess>=2.2.2" ,
48
+ ]
49
+ dynamic = [" version" ]
50
+
51
+ [project .readme ]
52
+ file = " README.md"
53
+ content-type = " text/markdown"
54
+
55
+ [project .urls ]
56
+ Homepage = " http://labscriptsuite.org/"
57
+ Documentation = " https://docs.labscriptsuite.org/"
58
+ Repository = " https://github.com/labscript-suite/lyse/"
59
+ Downloads = " https://github.com/labscript-suite/lyse/releases/"
60
+ Tracker = " https://github.com/labscript-suite/lyse/issues/"
61
+
62
+ [project .optional-dependencies ]
63
+ docs = [
64
+ " PyQt5" ,
65
+ " Sphinx==7.2.6" ,
66
+ " sphinx-rtd-theme==2.0.0" ,
67
+ " myst_parser==2.0.0" ,
68
+ ]
69
+
70
+ [project .scripts ]
71
+ lyse = " desktop_app:entry_point"
72
+
73
+ [project .gui-scripts ]
74
+ lyse-gui = " desktop_app:entry_point"
0 commit comments