setup.py 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #
  2. # QR Code generator Distutils script (Python)
  3. #
  4. # Copyright (c) Project Nayuki. (MIT License)
  5. # https://www.nayuki.io/page/qr-code-generator-library
  6. #
  7. # Permission is hereby granted, free of charge, to any person obtaining a copy of
  8. # this software and associated documentation files (the "Software"), to deal in
  9. # the Software without restriction, including without limitation the rights to
  10. # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  11. # the Software, and to permit persons to whom the Software is furnished to do so,
  12. # subject to the following conditions:
  13. # - The above copyright notice and this permission notice shall be included in
  14. # all copies or substantial portions of the Software.
  15. # - The Software is provided "as is", without warranty of any kind, express or
  16. # implied, including but not limited to the warranties of merchantability,
  17. # fitness for a particular purpose and noninfringement. In no event shall the
  18. # authors or copyright holders be liable for any claim, damages or other
  19. # liability, whether in an action of contract, tort or otherwise, arising from,
  20. # out of or in connection with the Software or the use or other dealings in the
  21. # Software.
  22. #
  23. import setuptools
  24. setuptools.setup(
  25. name = "qrcodegen",
  26. description = "High quality QR Code generator library for Python",
  27. version = "1.8.0",
  28. platforms = "OS Independent",
  29. python_requires = '>=3',
  30. license = "MIT License",
  31. author = "Project Nayuki",
  32. author_email = "me@nayuki.io",
  33. url = "https://www.nayuki.io/page/qr-code-generator-library",
  34. classifiers = [
  35. "Development Status :: 5 - Production/Stable",
  36. "Intended Audience :: Developers",
  37. "Intended Audience :: Information Technology",
  38. "License :: OSI Approved :: MIT License",
  39. "Operating System :: OS Independent",
  40. "Programming Language :: Python",
  41. "Programming Language :: Python :: 3",
  42. "Topic :: Multimedia :: Graphics",
  43. "Topic :: Software Development :: Libraries :: Python Modules",
  44. ],
  45. long_description = """=========================
  46. QR Code generator library
  47. =========================
  48. Introduction
  49. ------------
  50. This project aims to be the best, clearest QR Code generator library. The primary goals are flexible options and absolute correctness. Secondary goals are compact implementation size and good documentation comments.
  51. Home page with live JavaScript demo, extensive descriptions, and competitor comparisons: https://www.nayuki.io/page/qr-code-generator-library
  52. Features
  53. --------
  54. Core features:
  55. * Significantly shorter code but more documentation comments compared to competing libraries
  56. * Supports encoding all 40 versions (sizes) and all 4 error correction levels, as per the QR Code Model 2 standard
  57. * Output format: Raw modules/pixels of the QR symbol
  58. * Detects finder-like penalty patterns more accurately than other implementations
  59. * Encodes numeric and special-alphanumeric text in less space than general text
  60. * Open-source code under the permissive MIT License
  61. Manual parameters:
  62. * User can specify minimum and maximum version numbers allowed, then library will automatically choose smallest version in the range that fits the data
  63. * User can specify mask pattern manually, otherwise library will automatically evaluate all 8 masks and select the optimal one
  64. * User can specify absolute error correction level, or allow the library to boost it if it doesn't increase the version number
  65. * User can create a list of data segments manually and add ECI segments
  66. More information about QR Code technology and this library's design can be found on the project home page.
  67. Examples
  68. --------
  69. ::
  70. from qrcodegen import *
  71. # Simple operation
  72. qr0 = QrCode.encode_text("Hello, world!", QrCode.Ecc.MEDIUM)
  73. svg = to_svg_str(qr0, 4) # See qrcodegen-demo
  74. # Manual operation
  75. segs = QrSegment.make_segments("3141592653589793238462643383")
  76. qr1 = QrCode.encode_segments(segs, QrCode.Ecc.HIGH, 5, 5, 2, False)
  77. for y in range(qr1.get_size()):
  78. for x in range(qr1.get_size()):
  79. (... paint qr1.get_module(x, y) ...)
  80. More complete set of examples: https://github.com/nayuki/QR-Code-generator/blob/master/python/qrcodegen-demo.py .""",
  81. py_modules = ["qrcodegen"],
  82. )