forked from lincolnloop/python-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 867 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
30
31
#!/usr/bin/env python
from distutils.core import setup
setup(
name='qrcode',
version='2.3.1',
url='https://github.com/lincolnloop/python-qrcode',
#download_url='',
description='QR Code image generator',
license='BSD',
long_description=open('README.rst').read(),
author='Lincoln Loop',
author_email='[email protected]',
platforms=['any'],
packages=[
'qrcode',
],
scripts=[
'scripts/qr',
],
package_data={'': ['LICENSE']},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)