Files
charon_vna/pyproject.toml
Brendan Haines 92c5876b23
Some checks failed
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Failing after -52s
Publish Python 🐍 distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Has been skipped
switch to src-layout to avoid issues with multiple top level packages
2025-07-21 21:39:31 -06:00

59 lines
1.1 KiB
TOML

[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 = "MIT"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"numpy",
"scipy",
"scikit-rf",
"xarray",
"zarr",
"pylibiio",
"pyadi-iio",
"click",
"matplotlib",
"pyside6",
]
dynamic = ["version"]
[project.urls]
homepage = "https://pypi.org/project/charon-vna/"
repository = "https://git.brendanhaines.com/brendanhaines/charon_vna"
[project.scripts]
charon-cli = "charon_vna.cli:main"
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
)/
'''
[tool.isort]
profile = "black"