Skip to content

Commit f46b12c

Browse files
committed
feat: add uv-based PyPI packaging via pyproject.toml
1 parent 78e7d76 commit f46b12c

19 files changed

+2998
-27
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,14 @@ cython_debug/
169169

170170
# PyPI configuration file
171171
.pypirc
172+
173+
# macOS system files
174+
.DS_Store
175+
.AppleDouble
176+
.LSOverride
177+
178+
# macOS metadata for folders
179+
Icon?
180+
._*
181+
.Spotlight-V100
182+
.Trashes

examples/plotting_scan.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
# import tinySA library
1313
# (NOTE: check library path relative to script path)
14-
from src.tinySA_python import tinySA
14+
from tinysa import tinySA
15+
1516

1617

1718
# imports FOR THE EXAMPLE

examples/plotting_scanraw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# import tinySA library
1616
# (NOTE: check library path relative to script path)
17-
from src.tinySA_python import tinySA
17+
from tinysa import tinySA
1818

1919
# imports FOR THE EXAMPLE
2020
import numpy as np

examples/plotting_waterfall_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
##-------------------------------------------------------------------------------\
99
# import tinySA library
1010
# (NOTE: check library path relative to script path)
11-
from src.tinySA_python import tinySA
11+
from tinysa import tinySA
1212

1313
# imports FOR THE EXAMPLE
1414
import csv

examples/plotting_waterfall_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
##-------------------------------------------------------------------------------\
99
# import tinySA library
1010
# (NOTE: check library path relative to script path)
11-
from src.tinySA_python import tinySA
11+
from tinysa import tinySA
1212

1313
# imports FOR THE EXAMPLE
1414
import csv

examples/save_scan_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# import tinySA library
1313
# (NOTE: check library path relative to script path)
14-
from src.tinySA_python import tinySA
14+
from tinysa import tinySA
1515

1616

1717
# imports FOR THE EXAMPLE

examples/using_autoconnect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# import tinySA library
1313
# (NOTE: check library path relative to script path)
14-
from src.tinySA_python import tinySA
14+
from tinysa import tinySA
1515

1616
# create a new tinySA object
1717
tsa = tinySA()

examples/using_command_func.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# import tinySA library
1515
# (NOTE: check library path relative to script path)
16-
from src.tinySA_python import tinySA
16+
from tinysa import tinySA
1717

1818

1919
# create a new tinySA object

hello_world.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# import tinySA library
1414
# (NOTE: check library path relative to script path)
15-
from src.tinySA_python import tinySA
15+
from tinysa import tinySA
1616

1717
#import for EXAMPLE
1818
import matplotlib.pyplot as plt

0 commit comments

Comments
 (0)