-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
29 lines (26 loc) · 902 Bytes
/
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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md', 'r') as rm:
full_desc = rm.read()
setup(
name="pixqrcodegen",
version="0.4",
author="Alex Pinheiro",
url="https://github.com/Alexsussa/pixqrcodegen",
packages=['pixqrcodegen'],
description="Gera a Payload do PIX e o QR Code",
long_description=full_desc,
long_description_content_type='text/markdown',
python_requires=">= 3.6",
install_requires=['crcmod', 'qrcode', 'pillow'],
license='MIT',
keywords=['qrcode', 'payload', 'qrcode-generator', 'pix', 'pix-payload-generator'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent'
]
)