blob: 74b0acf905bc4bfc597cacbba48341d457e3c041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[project]
name = "scopekit"
version = "1.0.7"
description = "General-purpose oscilloscope plotting components."
authors = [{ name = "Sam Scholten", email = "s.scholten@uq.edu.au" }]
requires-python = ">=3.8"
dependencies = [
"numpy",
"matplotlib",
"numba",
"PyQt6" # I guess flexible on this??
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
|