forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 916 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 916 Bytes
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
from distutils.core import setup
# patch distutils if it can't cope with the "classifiers" or "download_url"
# keywords (prior to python 2.3.0).
from distutils.dist import DistributionMetadata
if not hasattr(DistributionMetadata, 'classifiers'):
DistributionMetadata.classifiers = None
if not hasattr(DistributionMetadata, 'download_url'):
DistributionMetadata.download_url = None
setup(
name = 'pyqrcode',
version = '0.1',
description = 'Generate QR Codes',
long_description = """\
Generate QR Codes
""",
author='David Janes',
author_email = '[email protected]',
url = 'http://code.davidjanes.com/',
download_url = 'http://code.google.com/p/pyqrcode/source/checkout',
license = "MIT",
platforms = ['POSIX', 'Windows'],
keywords = ['qrcodes',],
classifiers = [
],
py_modules = ['pyqrcode',]
)