Skip to content

Commit

Permalink
[new] add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
x-hw committed Apr 6, 2021
1 parent 2830b19 commit de2462a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ ENV/
# Rope project settings
.ropeproject

setup.py
MANIFEST

.idea
41 changes: 41 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
)

0 comments on commit de2462a

Please sign in to comment.