Skip to content

Commit

Permalink
Public release of pylibdmtx
Browse files Browse the repository at this point in the history
  • Loading branch information
quicklizard99 committed Nov 4, 2016
1 parent cfbfac7 commit feafbf0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ Windows only. Download and install their [SDK](http://www.inliteresearch.com/).

### libdmtx

The [pylibdmtx](https://pypi.python.org/pypi/pylibdmtx/) Python package is
a dependency of `gouda` and is listed in `requirements.txt`.

The `libdmtx` `DLL`s are included with the Windows Python wheel builds
of `pylibdmtx`.
On other operating systems, you will need to install the `libdmtx` shared
library.

#### Linux

Install the `libdmtx` shared lib.
Expand All @@ -109,16 +117,6 @@ Install the `libdmtx` shared lib.

brew install libdmtx

### All OSes

Install Python wrapper

pip install pylibdmtx

Test

python -c "import pylibdmtx; print(pylibdmtx)"

### Softek
Linux, OS X and Windows.
Download and install their [SDK](http://www.bardecode.com/).
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pathlib>=1.0
pylibdmtx>=0.1.1
numpy>=1.8.2

# Packages required for testing
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
},
'install_requires': [
# TODO How to specify OpenCV? 'cv2>=2.4.8,<3',
'numpy>=1.8.2',
'pathlib>=1.0.1',
'pylibdmtx>=0.1.1',
'numpy>=1.8.2',
],
'tests_require': [
'nose>=1.3.4',
Expand Down

0 comments on commit feafbf0

Please sign in to comment.