diff --git a/pysstv/__init__.py b/pysstv/__init__.py new file mode 100644 index 0000000..91f9fd6 --- /dev/null +++ b/pysstv/__init__.py @@ -0,0 +1,3 @@ +#!/usr/bin/env python + +__all__ = ['color', 'grayscale', 'sstv', 'tests', 'examples'] diff --git a/run.py b/pysstv/__main__.py similarity index 100% rename from run.py rename to pysstv/__main__.py diff --git a/color.py b/pysstv/color.py similarity index 100% rename from color.py rename to pysstv/color.py diff --git a/examples/overlay.py b/pysstv/examples/overlay.py similarity index 100% rename from examples/overlay.py rename to pysstv/examples/overlay.py diff --git a/examples/pyaudio_sstv.py b/pysstv/examples/pyaudio_sstv.py similarity index 100% rename from examples/pyaudio_sstv.py rename to pysstv/examples/pyaudio_sstv.py diff --git a/examples/repeater.py b/pysstv/examples/repeater.py similarity index 100% rename from examples/repeater.py rename to pysstv/examples/repeater.py diff --git a/grayscale.py b/pysstv/grayscale.py similarity index 100% rename from grayscale.py rename to pysstv/grayscale.py diff --git a/sstv.py b/pysstv/sstv.py similarity index 100% rename from sstv.py rename to pysstv/sstv.py diff --git a/tests/assets/320x256.png b/pysstv/tests/assets/320x256.png similarity index 100% rename from tests/assets/320x256.png rename to pysstv/tests/assets/320x256.png diff --git a/tests/assets/MartinM1_encode_line_lena1.p b/pysstv/tests/assets/MartinM1_encode_line_lena1.p similarity index 100% rename from tests/assets/MartinM1_encode_line_lena1.p rename to pysstv/tests/assets/MartinM1_encode_line_lena1.p diff --git a/tests/assets/MartinM1_encode_line_lena10.p b/pysstv/tests/assets/MartinM1_encode_line_lena10.p similarity index 100% rename from tests/assets/MartinM1_encode_line_lena10.p rename to pysstv/tests/assets/MartinM1_encode_line_lena10.p diff --git a/tests/assets/MartinM1_encode_line_lena100.p b/pysstv/tests/assets/MartinM1_encode_line_lena100.p similarity index 100% rename from tests/assets/MartinM1_encode_line_lena100.p rename to pysstv/tests/assets/MartinM1_encode_line_lena100.p diff --git a/tests/assets/MartinM1_freq_bits.p b/pysstv/tests/assets/MartinM1_freq_bits.p similarity index 100% rename from tests/assets/MartinM1_freq_bits.p rename to pysstv/tests/assets/MartinM1_freq_bits.p diff --git a/tests/assets/MartinM1_freq_bits_lena.p b/pysstv/tests/assets/MartinM1_freq_bits_lena.p similarity index 100% rename from tests/assets/MartinM1_freq_bits_lena.p rename to pysstv/tests/assets/MartinM1_freq_bits_lena.p diff --git a/tests/assets/MartinM1_values.p b/pysstv/tests/assets/MartinM1_values.p similarity index 100% rename from tests/assets/MartinM1_values.p rename to pysstv/tests/assets/MartinM1_values.p diff --git a/tests/assets/SSTV_gen_samples.p b/pysstv/tests/assets/SSTV_gen_samples.p similarity index 100% rename from tests/assets/SSTV_gen_samples.p rename to pysstv/tests/assets/SSTV_gen_samples.p diff --git a/tests/assets/SSTV_gen_values.p b/pysstv/tests/assets/SSTV_gen_values.p similarity index 100% rename from tests/assets/SSTV_gen_values.p rename to pysstv/tests/assets/SSTV_gen_values.p diff --git a/tests/test_color.py b/pysstv/tests/test_color.py similarity index 100% rename from tests/test_color.py rename to pysstv/tests/test_color.py diff --git a/tests/test_sstv.py b/pysstv/tests/test_sstv.py similarity index 100% rename from tests/test_sstv.py rename to pysstv/tests/test_sstv.py