Skip to content

Commit a27180d

Browse files
committed
License file is not included in the setup.py, because of path problems. Doh.
1 parent d67a36a commit a27180d

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
python-quirc
5+
============
6+
7+
python-quirc is a ctypes bindings for `quirc <https://github.com/dlbeer/quirc/>`_, library for decoding QR codes.
8+
9+
This library is fast, small, easy to use, have a very small memory usage,
10+
and optionally requires one of the image processing libraries.
11+
"""
12+
313
from setuptools import setup
414

515
setup(
616
name='quirc',
717
version='0.6.1',
8-
license=open('LICENSE').read(),
918
author='SvartalF',
1019
author_email='self@svartalf.info',
1120
url='https://github.com/svartalf/python-quirc',
1221
description='ctypes wrapper for QR code decoding library `libquirc`',
22+
long_description=__doc__,
1323
packages=('quirc',),
1424
test_suite='tests.load_tests',
1525
classifiers=(

0 commit comments

Comments
 (0)