Skip to content

Commit 4d978bd

Browse files
committed
Changed project name to pylepton
1 parent 229e347 commit 4d978bd

File tree

8 files changed

+10
-7
lines changed

8 files changed

+10
-7
lines changed

Diff for: .gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
*.pyc
22
build
3+
dist
4+
MANIFEST
5+

Diff for: picamera_overlay

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import picamera
55
import numpy as np
66
import cv2
77
import traceback
8-
from lepton import Lepton
8+
from pylepton import Lepton
99

1010
def main(flip_v = False, alpha = 128):
1111
# Create an array representing a 1280x720 image of

Diff for: lepton/Lepton.py renamed to pylepton/Lepton.py

File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# python-lepton
1+
# pylepton
22

33
Quick and dirty pure python library for capturing images from the Lepton over SPI (for example, on a Raspberry PI).
44

Diff for: setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44
from pkgutil import walk_packages
55

6-
import lepton
6+
import pylepton
77

88
def find_packages(path=".", prefix=""):
99
yield prefix
@@ -12,12 +12,12 @@ def find_packages(path=".", prefix=""):
1212
if ispkg:
1313
yield name
1414

15-
setup(name='lepton',
15+
setup(name='pylepton',
1616
version='0.1.0',
1717
description='FLIR Lepton interface library for Python',
1818
author='Kurt Kiefer',
1919
author_email='[email protected]',
20-
url='https://github.com/kekiefer/python-lepton',
21-
packages = list(find_packages(lepton.__path__, lepton.__name__)),
20+
url='https://github.com/kekiefer/pylepton',
21+
packages = list(find_packages(pylepton.__path__, pylepton.__name__)),
2222
install_depends = ['numpy', 'cv2'],
2323
)

Diff for: still_capture

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
import numpy as np
55
import cv2
6-
from lepton import Lepton
6+
from pylepton import Lepton
77

88
def capture(flip_v = False):
99
with Lepton() as l:

0 commit comments

Comments
 (0)