-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 872 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 872 Bytes
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "gemkid"
description = "MKID Layout generator for prototyping our UltimatE 1 MKID design"
readme = "README.md"
authors = [
{name = "Aled Cuda"},
{name = "Mazin Lab contributors"}
]
maintainers = [
{name = "Aled V. Cuda", email = "aled@ucsb.edu"}
]
license = {file = "LICENSE.txt"}
requires-python = ">=3.11"
dependencies = [
"numpy>=1.21",
"gdstk>=0.9.50",
"pandas>=2.2.2",
"scipy>=1.11.1",
"pyarrow>=16.1.0"
]
[project.optional-dependencies]
simulation = [
"pysonnet@git+https://github.com/ld-cd/pysonnet.git",
"loopfit@git+https://github.com/zobristnicholas/loopfit.git"
]
[tool.setuptools]
packages = ["gemkid"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"jupyterlab>=4.2.5",
"tqdm>=4.67.1",
]