-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (59 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
71 lines (59 loc) · 1.59 KB
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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
dynamic = ["version"]
name = "mkidgen3"
description = "Drivers and Client/Server control library for Mazin Labs 3rd generation MKID readout"
readme = "README.md"
# Listed names per poster on the wall feel free to adjust
authors = [
{name = "John I. Bailey, III"},
{name = "Jennifer Pearl Smith"},
{name = "Aled V. Cuda"},
{name = "Mazin Lab contributors"}
]
maintainers = [
{name = "Jennifer Pearl Smith"},
{name = "Aled V. Cuda", email = "aled@ucsb.edu"}
]
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"numpy>=1.21",
"scipy>=1.8.0", # Unclear if this needs to be mandatory, we only use it in a few spots
"pyserial>=3.5",
"pyyaml>=5.4.1", # We use this in exactly one place, consider refactoring to use one of the formats in the standard library instead
]
[tool.pdm.version]
source = "scm"
[project.optional-dependencies]
board = [
"pynq>=3.0.1",
"fpbinary==1.5.8", # TODO: Project looks imature, possibly vendor this or reevaluate use
# The packaging on these two is a mess, consider vendoring:
"xrfdc==2.0",
"xrfclk==2.0",
]
# TODO: Potentially rip this out?
anritsu = [
"requests>=2.25.0"
]
sccommon = [
"pyzmq>=23.2.0",
"blosc2>=2.2.0",
"tqdm>=4.64.0", # TODO: Put this with plotting?
]
server = [
"psutil>=5.9.0",
"mkidgen3[board,sccommon]",
]
client = [
"h5py>=3.10.0",
"hdf5plugin>=4.4.0",
"npy-append-array==0.9.16", # TODO: This project appears very, possibly vendor this or reevaluate use
"mkidgen3[sccommon]",
]
plotting = [
"matplotlib>=3.5.1"
]