forked from NanoVNA-Saver/nanovna-saver
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved to pyscaffold directory structure
and fixed resonances analysys crash NanoVNA-Saver#608
- Loading branch information
Showing
148 changed files
with
1,544 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,9 @@ | ||
# .coveragerc to control coverage.py | ||
[run] | ||
# ignore GUI code atm. | ||
omit = | ||
NanoVNASaver/About.py | ||
NanoVNASaver/Analysis/*.py | ||
NanoVNASaver/Calibration.py | ||
NanoVNASaver/Charts/*.py | ||
NanoVNASaver/Controls/*.py | ||
NanoVNASaver/Hardware/*.py | ||
NanoVNASaver/Inputs.py | ||
NanoVNASaver/Marker/*.py | ||
NanoVNASaver/NanoVNASaver.py | ||
NanoVNASaver/Settings/Bands.py | ||
NanoVNASaver/SweepWorker.py | ||
NanoVNASaver/Windows/*.py | ||
**/__init__.py | ||
NanoVNASaver/__main__.py | ||
branch = True | ||
source = tests | ||
#omit = src/ | ||
|
||
[report] | ||
fail_under = 90.0 | ||
show_missing = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,54 @@ | ||
/venv/ | ||
/env/ | ||
.idea/ | ||
.tox/ | ||
.vscode/ | ||
/build/ | ||
/dist/ | ||
/nanovna-saver.spec | ||
*.egg-info/ | ||
*.pyc | ||
*.cal | ||
settings.json | ||
.gitignore | ||
.coverage | ||
.flatpak-builder | ||
/nanovna-saver.exe.spec | ||
/deb_dist/ | ||
*.deb | ||
*.rpm | ||
*.tar.gz | ||
# Temporary and binary files | ||
*~ | ||
.*~ | ||
*.bak | ||
*.new | ||
*.old | ||
*.py[cod] | ||
*.so | ||
*.cfg | ||
!.isort.cfg | ||
!setup.cfg | ||
*.orig | ||
*.log | ||
*.pot | ||
__pycache__/* | ||
.cache/* | ||
.*.swp | ||
*/.ipynb_checkpoints/* | ||
.DS_Store | ||
|
||
# Project files | ||
.ropeproject | ||
.project | ||
.pydevproject | ||
.settings | ||
.idea | ||
.vscode | ||
tags | ||
|
||
# Package files | ||
*.egg | ||
*.eggs/ | ||
.installed.cfg | ||
*.egg-info | ||
|
||
# Unittest and coverage | ||
htmlcov/* | ||
.coverage | ||
.coverage.* | ||
.tox | ||
junit*.xml | ||
coverage.xml | ||
.pytest_cache/ | ||
|
||
# Build and docs folder/files | ||
build/* | ||
dist/* | ||
sdist/* | ||
docs/api/* | ||
docs/_rst/* | ||
docs/_build/* | ||
cover/* | ||
MANIFEST | ||
|
||
# Per-project virtualenvs | ||
.venv*/ | ||
.conda*/ | ||
.python-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
# Build documentation with MkDocs | ||
#mkdocs: | ||
# configuration: mkdocs.yml | ||
|
||
# Optionally build your docs in additional formats such as PDF | ||
formats: | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
- {path: ., method: pip} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
============ | ||
Contributors | ||
============ | ||
|
||
* Attilio Panniello <[email protected]> | ||
* bicycleGuy <[email protected]> | ||
* Carl Tremblay <[email protected]> | ||
* cinosh07 <[email protected]> | ||
* Dan Halbert <[email protected]> | ||
* Daniel Lingvay <[email protected]> | ||
* Davide Gerhard <[email protected]> | ||
* Denis Bondar <[email protected]> | ||
* dhunt1342 <[email protected]> | ||
* DiSlord <[email protected]> | ||
* Frank Kunz <[email protected]> | ||
* Galileo <[email protected]> | ||
* Holger Mueller <[email protected]> | ||
* ikatkov <[email protected]> | ||
* Ishmael Samuel <[email protected]> | ||
* James Limbouris <[email protected]> | ||
* Jaroslav Škarvada <[email protected]> | ||
* Kevin Zembower <[email protected]> | ||
* Mark Zachmann <[email protected]> | ||
* Martin <[email protected]> | ||
* Mauro Gaioni <[email protected]> | ||
* Mauro <[email protected]> | ||
* mihtjel <[email protected]> | ||
* Mike4U <[email protected]> | ||
* mss <[email protected]> | ||
* Neil Katin <[email protected]> | ||
* Ohan Smit <[email protected]> | ||
* Olgierd Pilarczyk <[email protected]> | ||
* Oscilllator <[email protected]> | ||
* Patrick Coleman <[email protected]> | ||
* Peter B Marks <[email protected]> | ||
* Psynosaur <[email protected]> | ||
* RandMental <[email protected]> | ||
* Roel Jordans <[email protected]> | ||
* Rune B. Broberg <[email protected]> | ||
* Sascha Silbe <[email protected]> | ||
* sysjoint-tek <[email protected]> | ||
* zstadler <[email protected]> |
Oops, something went wrong.