charon_vna/pyproject.toml

58 lines
1.0 KiB
TOML
Raw Normal View History

[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "charon_vna"
authors = [{ name = "Brendan Haines", email = "brendan.haines@gmail.com" }]
description = "RF Network Analyzer based on the Pluto SDR"
readme = "README.md"
requires-python = ">=3"
# keywords = ["one", "two"]
license = { text = "MIT License" }
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"numpy",
"scipy",
"scikit-rf",
"xarray",
"zarr",
"pylibiio",
"pyadi-iio",
"click",
"matplotlib",
2024-12-18 21:37:57 -07:00
"pyside6",
]
dynamic = ["version"]
[project.urls]
2024-12-19 00:46:43 -07:00
homepage = "https://git.brendanhaines.com/brendanhaines/charon_vna"
[project.scripts]
2024-12-19 00:25:47 -07:00
charon-cli = "charon_vna.cli:main"
2024-12-18 23:55:06 -07:00
charon-gui = "charon_vna.gui:main"
[tool.setuptools_scm]
version_file = "charon_vna/_version.py"
[tool.black]
line-length = 120
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.vscode
| _build
| buck-out
| build
| dist
)/
'''
2024-12-02 18:06:39 -07:00
[tool.isort]
profile = "black"