Browse Source

Add shebangs and make files executable

pull/27/head
Orgad Shaneh 8 years ago
parent
commit
6ab0440eb0
10 changed files with 11 additions and 0 deletions
  1. +0
    -0
     
  2. +1
    -0
      Adafruit_Video_Looper/directory.py
  3. +1
    -0
      Adafruit_Video_Looper/hello_video.py
  4. +1
    -0
      Adafruit_Video_Looper/model.py
  5. +1
    -0
      Adafruit_Video_Looper/omxplayer.py
  6. +1
    -0
      Adafruit_Video_Looper/usb_drive.py
  7. +1
    -0
      Adafruit_Video_Looper/usb_drive_mounter.py
  8. +1
    -0
      Adafruit_Video_Looper/video_looper.py
  9. +2
    -0
      remount_rw_usbkey.sh
  10. +2
    -0
      setup.py

+ 0
- 0
View File


+ 1
- 0
Adafruit_Video_Looper/directory.py View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2015 Adafruit Industries. # Copyright 2015 Adafruit Industries.
# Author: Tony DiCola # Author: Tony DiCola
# License: GNU GPLv2, see LICENSE.txt # License: GNU GPLv2, see LICENSE.txt


+ 1
- 0
Adafruit_Video_Looper/hello_video.py View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2015 Adafruit Industries. # Copyright 2015 Adafruit Industries.
# Author: Tony DiCola # Author: Tony DiCola
# License: GNU GPLv2, see LICENSE.txt # License: GNU GPLv2, see LICENSE.txt


+ 1
- 0
Adafruit_Video_Looper/model.py View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2015 Adafruit Industries. # Copyright 2015 Adafruit Industries.
# Author: Tony DiCola # Author: Tony DiCola
# License: GNU GPLv2, see LICENSE.txt # License: GNU GPLv2, see LICENSE.txt


+ 1
- 0
Adafruit_Video_Looper/omxplayer.py View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2015 Adafruit Industries. # Copyright 2015 Adafruit Industries.
# Author: Tony DiCola # Author: Tony DiCola
# License: GNU GPLv2, see LICENSE.txt # License: GNU GPLv2, see LICENSE.txt


+ 1
- 0
Adafruit_Video_Looper/usb_drive.py View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2015 Adafruit Industries. # Copyright 2015 Adafruit Industries.
# Author: Tony DiCola # Author: Tony DiCola
# License: GNU GPLv2, see LICENSE.txt # License: GNU GPLv2, see LICENSE.txt


+ 1
- 0
Adafruit_Video_Looper/usb_drive_mounter.py View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2015 Adafruit Industries. # Copyright 2015 Adafruit Industries.
# Author: Tony DiCola # Author: Tony DiCola
# License: GNU GPLv2, see LICENSE.txt # License: GNU GPLv2, see LICENSE.txt


+ 1
- 0
Adafruit_Video_Looper/video_looper.py View File

@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2015 Adafruit Industries. # Copyright 2015 Adafruit Industries.
# Author: Tony DiCola # Author: Tony DiCola
# License: GNU GPLv2, see LICENSE.txt # License: GNU GPLv2, see LICENSE.txt


+ 2
- 0
remount_rw_usbkey.sh View File

@@ -1 +1,3 @@
#!/bin/sh

sudo mount -o remount ,rw /mnt/usbdrive0 sudo mount -o remount ,rw /mnt/usbdrive0

+ 2
- 0
setup.py View File

@@ -1,3 +1,5 @@
#!/usr/bin/env python

from ez_setup import use_setuptools from ez_setup import use_setuptools
use_setuptools() use_setuptools()
from setuptools import setup, find_packages from setuptools import setup, find_packages


Loading…
Cancel
Save