Cleaned up Python bindings. Moved to openalpr package and added import in __init__

This commit is contained in:
Matt Hill
2015-08-05 18:47:29 -04:00
parent a1e2a92ec5
commit 7061db5548
4 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1 @@
from openalpr import Alpr

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python
from distutils.core import setup
setup(name='openalpr',
version='1.0',
description='OpenALPR Python Bindings',
author='Matt Hill',
author_email='matthill@openalpr.com',
url='http://www.openalpr.com/',
packages=['openalpr']
)

View File

@@ -54,4 +54,4 @@ try:
finally: finally:
if alpr: if alpr:
alpr.unload() alpr.unload()