-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 729 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
long_description = ""
setup(
name='QR_Code_Generator_and_Reader',
version='1.0',
author='Ruban Gino Singh',
developer='Ruban Gino Singh',
author_email='info@rubangino.in',
description="Python Application to generate QR code with in one click.",
long_description=long_description,
license="MIT",
classifiers=[
"Development Status :: 1 - Beta",
"Intented Audience :: Social Media managers and Online program managers",
"Licence :: OSI Approved :: MIT Licence"
],
keywords="QRcode QRgenerator QRreader QRcodeGenerator",
packages=find_packages(),
install_requires=["requests>=2"],
python_requires="~=3.5"
)