Skip to content

Commit

Permalink
initial setup
Browse files Browse the repository at this point in the history
Signed-off-by: Wolfgang Brueckner <wolfgang.brueckner@fau.de>
  • Loading branch information
Wolfgang Brueckner committed Mar 22, 2018
1 parent c06ebf2 commit 93b1fd2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Compiled python modules.
*.pyc

# Setuptools distribution folder.
/dist/

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
3 changes: 3 additions & 0 deletions cv2pynq/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

def Sobel():
return 1
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from setuptools import setup

setup(name='cv2pynq',
version='0.1',
description='Accelerates OpenCV image filter functions on Zynq',
url='http://github.com/wbrueckner/todo',
author='Wolfgang Brueckner',
author_email='wolfgang.brueckner@fau.de',
license='MIT',
packages=['cv2pynq'],
zip_safe=False)

0 comments on commit 93b1fd2

Please sign in to comment.