Commit cd4bc405 authored by lucasb-eyer's avatar lucasb-eyer
Browse files

Fix #11: actually install all files.

Especially, installs `__init__.py` which is necessary for the import.
parent c0550af2
...@@ -41,7 +41,7 @@ For images, the easiest way to use this library is using the `DenseCRF2D` class: ...@@ -41,7 +41,7 @@ For images, the easiest way to use this library is using the `DenseCRF2D` class:
```python ```python
import numpy as np import numpy as np
import densecrf as dcrf import pydensecrf.densecrf as dcrf
d = dcrf.DenseCRF2D(640, 480, 5) # width, height, nlabels d = dcrf.DenseCRF2D(640, 480, 5) # width, height, nlabels
``` ```
......
...@@ -14,6 +14,6 @@ setup( ...@@ -14,6 +14,6 @@ setup(
author_email="lucasb.eyer.be@gmail.com", author_email="lucasb.eyer.be@gmail.com",
url="http://github.com/lucasb-eyer/pydensecrf", url="http://github.com/lucasb-eyer/pydensecrf",
ext_modules=cythonize(['pydensecrf/eigen.pyx', 'pydensecrf/densecrf.pyx']), ext_modules=cythonize(['pydensecrf/eigen.pyx', 'pydensecrf/densecrf.pyx']),
py_modules = ["pydensecrf/utils"] packages=["pydensecrf"]
) )
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment