-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
72 lines (64 loc) · 1.92 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"
[tool.setuptools]
zip-safe = false
include-package-data = true
packages = [
"labscript_utils",
"labscript_profile",
]
[tool.setuptools.package-data]
labscript_profile = ["../labscript-suite.pth"]
[project]
name = "labscript-utils"
description = "Shared utilities for the labscript suite"
authors = [
{name = "The labscript suite community", email = "labscriptsuite@googlegroups.com"},
]
keywords = ["experiment control", "automation"]
license = {file = 'LICENSE.txt'}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.6"
dependencies = [
"importlib_metadata>=1.0",
"h5py>=2.9",
"numpy>=1.15",
"packaging>=20.4",
"pyqtgraph>=0.11.0rc0",
"qtutils>=2.2.3",
"scipy",
"setuptools_scm>=4.1.0",
"zprocess>=2.18.0",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "http://labscriptsuite.org/"
Documentation = "https://docs.labscriptsuite.org/"
Repository = "https://github.com/labscript-suite/labscript-utils/"
Downloads = "https://github.com/labscript-suite/labscript-utils/releases/"
Tracker = "https://github.com/labscript-suite/labscript-utils/issues/"
[project.optional-dependencies]
docs = [
"PyQt5",
"Sphinx==7.2.6",
"sphinx-rtd-theme==2.0.0",
"myst_parser==2.0.0",
]
[project.scripts]
labscript-profile-create = "labscript_profile.create:create_profile"