You've already forked amazing-qr
mirror of
https://github.com/x-hw/amazing-qr.git
synced 2025-07-13 01:20:29 +02:00
[new] add setup.py
This commit is contained in:
41
setup.py
Normal file
41
setup.py
Normal file
@ -0,0 +1,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.1',
|
||||
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",
|
||||
)
|
Reference in New Issue
Block a user