17 lines
389 B
TOML
17 lines
389 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "simple-scope-parser"
|
|
version = "0.1.0"
|
|
description = "Simple oscilloscope CSV parser"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "Joe" }]
|
|
dependencies = ["numpy>=1.19.0"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["scope_parser*"]
|