-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.9 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
73
[build-system]
requires = [ "setuptools", "wheel", "Cython", "numpy>=1.13.3" ]
build-backend = "setuptools.build_meta"
[project]
name = "QuLab"
license = {text = "MIT"}
authors = [{name = "feihoo87", email = "[email protected]"}]
maintainers = [{name = "feihoo87", email = "[email protected]"}]
description = "contral instruments and manage data"
keywords = [
"experiment",
"laboratory",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.10"
dependencies = [
"blinker>=1.4",
"click>=7.1.2",
"dill>=0.3.6",
"GitPython>=3.1.14",
"ipython>=7.4.0",
"ipywidgets>=7.4.2",
"loguru>=0.7.2",
"matplotlib>=3.7.2",
"nevergrad>=1.0.2",
"numpy>=1.13.3",
"ply>=3.11",
"pyzmq>=25.1.0",
"scipy>=1.0.0",
"scikit-optimize>=0.9.0",
"SQLAlchemy>=2.0.19",
"watchdog>=4.0.0",
"waveforms>=1.9.4"
]
dynamic = ["version"]
[project.optional-dependencies]
full = [
"uvloop>=0.19.0"
]
[project.scripts]
"qulab" = "qulab.__main__:main"
[project.urls]
Homepage = "https://github.com/feihoo87/QuLab"
"Bug Reports" = "https://github.com/feihoo87/QuLab/issues"
"Source" = "https://github.com/feihoo87/QuLab/"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "qulab.version.__version__"}