forked from x-hw/amazing-qr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (49 loc) · 1.58 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'MyQR',
version = '1.0.0',
keywords = ('qr', 'qrcode', 'qr code', 'artistic', 'animated', 'gif'),
description = 'Generater for amazing qr codes. Including Common, Artistic and Animated qr codes.',
long_description = '''
Overview
===============
It can generate common qr-code, artistic qr-code (black & white or colorized), animated qr-code (black & white or colorized).
Usage
===============
myqr words
[-h]
[-v {1,2,3,...,40}]
[-l {L, M, Q, H}]
[-p image_filename]
[-c]
[-con contrast_value]
[-bri brightness_value]
More
===============
Please visit 'Home Page' blow for examples and details.
''',
author = 'sylnsfar',
author_email = '[email protected]',
url = 'https://github.com/sylnsfar/qrcode',
download_url = 'https://github.com/sylnsfar/qrcode',
install_requires = [
'imageio >= 1.5',
'numpy >= 1.11.1',
'Pillow>=3.3.1'
],
packages = ['MyQR', 'MyQR.mylibs'],
license = 'GPLv3',
classifiers = [
'Programming Language :: Python :: 3',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
entry_points = {
'console_scripts': [
'myqr = MyQR.__main__:run',
],
}
)