Skip to content

Commit

Permalink
Fixed setup
Browse files Browse the repository at this point in the history
  • Loading branch information
heuer committed Aug 24, 2016
1 parent 326a2c9 commit 99005c6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

0.1.6 -- 2016-08-25
-------------------
* Fixed setup


0.1.5 -- 2016-08-24
-------------------
* Added QRCode.matrix_iter(border) which returns an iterator over the matrix and
Expand Down
2 changes: 1 addition & 1 deletion segno/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
VersionError, DataOverflowError
from . import writers, utils

__version__ = '0.1.5'
__version__ = '0.1.6'

__all__ = ('make', 'make_qr', 'make_micro', 'QRCode', 'QRCodeError',
'ErrorLevelError', 'ModeError', 'MaskError', 'VersionError',
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:license: BSD License
"""
from __future__ import unicode_literals
from setuptools import setup
from setuptools import setup, find_packages
import os
import io
import re
Expand Down Expand Up @@ -43,7 +43,7 @@ def read(*filenames, **kwargs):
author='Lars Heuer',
author_email='heuer@semagia.com',
platforms=['any'],
py_modules=['segno'],
packages=find_packages(exclude=['docs', 'tests', 'sandbox', 'htmlcov']),
include_package_data=True,
entry_points = {'console_scripts': ['segno = segno.scripts.cmd:main']},
keywords=['QR Code', 'Micro QR Code', 'ISO/IEC 18004',
Expand Down

0 comments on commit 99005c6

Please sign in to comment.