forked from x-hw/amazing-qr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.3 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='amzqr',
version='0.0.2',
keywords='qr qrcode amazing artistic animated gif colorized',
description='Generater for amazing QR Codes. Including Common, Artistic and Animated QR Codes.',
long_description=long_description,
long_description_content_type="text/markdown",
author='hw',
author_email='xhaowen.xu@gmail.com',
url='https://github.com/hwxhw/amazing-qr',
download_url='https://github.com/hwxhw/amazing-qr',
project_urls={
"Bug Tracker": "https://github.com/hwxhw/amazing-qr/issues",
},
install_requires=[
'imageio >= 1.5',
'numpy >= 1.11.1',
'Pillow>=3.3.1'
],
packages=['amzqr', 'amzqr.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': [
'amzqr=amzqr.terminal:main',
],
},
python_requires=">=3",
)