{ "info": { "author": "Peter Odding & Arjan Verwer (Paylogic International)", "author_email": "peter.odding@paylogic.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Archiving :: Packaging", "Topic :: System :: Installation/Setup", "Topic :: System :: Software Distribution", "Topic :: System :: Systems Administration", "Topic :: Utilities" ], "description": "py2deb: Python to Debian package converter\n==========================================\n\n.. image:: https://travis-ci.org/paylogic/py2deb.svg?branch=master\n :target: https://travis-ci.org/paylogic/py2deb\n\n.. image:: https://coveralls.io/repos/paylogic/py2deb/badge.svg?branch=master\n :target: https://coveralls.io/r/paylogic/py2deb?branch=master\n\nThe Python package `py2deb` converts Python source distributions to Debian\nbinary packages (the ones used for installation). It uses pip-accel_ to\ndownload, unpack and compile Python packages. Because of this `py2deb` is\ncompatible with the command line interface of the ``pip install`` command. For\nexample you can specify packages to convert as command line arguments but you\ncan also use `requirement files`_ if you want.\n\nDuring the conversion process dependencies are automatically taken into account\nand converted as well so you don't actually have to use requirement files\nincluding transitive dependencies. In fact you might prefer not explicitly\nlisting your transitive dependencies in requirement files because `py2deb` will\ntranslate the version constraints of Python packages into Debian package\nrelationships.\n\nThe `py2deb` package is currently tested on CPython_ 2.6, 2.7, 3.4, 3.5, 3.6\nand 3.7 and PyPy_. For usage instructions please refer to the documentation\nhosted on `Read The Docs`_.\n\n.. contents::\n :local:\n\nInstallation\n------------\n\nThe `py2deb` package is available on PyPI_, so installation is very simple:\n\n.. code-block:: sh\n\n $ pip install py2deb\n\nThere are some system dependencies which you have to install as well:\n\n.. code-block:: sh\n\n $ sudo apt-get install dpkg-dev fakeroot\n\nOptionally you can also install Lintian_ (which is not a hard dependency but\nmore of a \"nice to have\"):\n\n.. code-block:: sh\n\n $ sudo apt-get install lintian\n\nWhen Lintian is installed it will be run automatically to sanity check\nconverted packages. This slows down the conversion process somewhat but can be\nvery useful, especially when working on py2deb itself. Currently py2deb doesn't\nfail when Lintian reports errors, this is due to the unorthodox ways in which\npy2deb can be used. This may change in the future as py2deb becomes more\nmature.\n\nUsage\n-----\n\nThere are two ways to use the `py2deb` package: As the command line program\n``py2deb`` and as a Python API. For details about the Python API please refer\nto the API documentation hosted on `Read the Docs`_. The command line interface\nis described below.\n\nCommand line\n~~~~~~~~~~~~\n\n.. A DRY solution to avoid duplication of the `py2deb --help' text:\n..\n.. [[[cog\n.. from humanfriendly.usage import inject_usage\n.. inject_usage('py2deb.cli')\n.. ]]]\n\n**Usage:** `py2deb [OPTIONS] ...`\n\nConvert Python packages to Debian packages according to the given\ncommand line options (see below). The command line arguments are the\nsame as accepted by the \"pip install\" command because py2deb invokes\npip during the conversion process. This means you can name the\npackage(s) to convert on the command line but you can also use\n\"requirement files\" if you prefer.\n\nIf you want to pass command line options to pip (e.g. because you want\nto use a custom index URL or a requirements file) then you will need\nto tell py2deb where the options for py2deb stop and the options for\npip begin. In such cases you can use the following syntax:\n\n.. code-block:: sh\n\n $ py2deb -r /tmp -- -r requirements.txt\n\nSo the \"--\" marker separates the py2deb options from the pip options.\n\n**Supported options:**\n\n.. csv-table::\n :header: Option, Description\n :widths: 30, 70\n\n\n \"``-c``, ``--config=FILENAME``\",\"Load a configuration file. Because the command line arguments are processed\n in the given order, you have the choice and responsibility to decide if\n command line options override configuration file options or vice versa.\n Refer to the documentation for details on the configuration file format.\n\n The default configuration files /etc/py2deb.ini and ~/.py2deb.ini are\n automatically loaded if they exist. This happens before environment\n variables and command line options are processed.\n\n Can also be set using the environment variable ``$PY2DEB_CONFIG``.\"\n \"``-r``, ``--repository=DIRECTORY``\",\"Change the directory where \\*.deb archives are stored. Defaults to\n the system wide temporary directory (which is usually /tmp). If\n this directory doesn't exist py2deb refuses to run.\n\n Can also be set using the environment variable ``$PY2DEB_REPOSITORY``.\"\n \"``--use-system-package=PYTHON_PACKAGE_NAME,DEBIAN_PACKAGE_NAME``\",\"Exclude a Python package (the name before the comma) from conversion and\n replace references to the Python package with a specific Debian package\n name. This allows you to use system packages for specific Python\n requirements.\"\n ``--name-prefix=PREFIX``,\"Set the name prefix used during the name conversion from Python to\n Debian packages. Defaults to \"\"python\"\". The name prefix and package\n names are always delimited by a dash.\n\n Can also be set using the environment variable ``$PY2DEB_NAME_PREFIX``.\"\n ``--no-name-prefix=PYTHON_PACKAGE_NAME``,\"Exclude a Python package from having the name prefix applied\n during the package name conversion. This is useful to avoid\n awkward repetitions.\"\n \"``--rename=PYTHON_PACKAGE_NAME,DEBIAN_PACKAGE_NAME``\",\"Override the package name conversion algorithm for the given pair\n of package names. Useful if you don't agree with the algorithm :-)\"\n ``--install-prefix=DIRECTORY``,\"Override the default system wide installation prefix. By setting\n this to anything other than \"\"/usr\"\" or \"\"/usr/local\"\" you change the\n way py2deb works. It will build packages with a file system layout\n similar to a Python virtual environment, except there will not be\n a Python executable: The packages are meant to be loaded by\n modifying Python's module search path. Refer to the documentation\n for details.\n\n Can also be set using the environment variable ``$PY2DEB_INSTALL_PREFIX``.\"\n \"``--install-alternative=LINK,PATH``\",\"Use Debian's \"\"update-alternatives\"\" system to add an executable\n that's installed in a custom installation prefix (see above) to\n the system wide executable search path. Refer to the documentation\n for details.\"\n ``--python-callback=EXPRESSION``,\"Set a Python callback to be called during the conversion process. Refer to\n the documentation for details about the use of this feature and the syntax\n of ``EXPRESSION``.\n\n Can also be set using the environment variable ``$PY2DEB_CALLBACK``.\"\n ``--report-dependencies=FILENAME``,\"Add the Debian relationships needed to depend on the converted\n package(s) to the given control file. If the control file already\n contains relationships the additional relationships will be added\n to the control file; they won't overwrite existing relationships.\"\n \"``-y``, ``--yes``\",\"Instruct pip-accel to automatically install build time dependencies\n where possible. Refer to the pip-accel documentation for details.\n\n Can also be set using the environment variable ``$PY2DEB_AUTO_INSTALL``.\"\n \"``-v``, ``--verbose``\",Make more noise :-).\n \"``-h``, ``--help``\",Show this message and exit.\n\n.. [[[end]]]\n\nFuture improvements\n-------------------\n\nSome random ideas for possible improvements to py2deb (in no specific order):\n\n- Find a way to facilitate (explicit / opt-in) installation of system wide\n files (not related to Python per se) based on a Python distribution? This\n could significantly reduce the need for \"wrapper packages\" that basically\n just pull in packages converted by py2deb and drop a few configuration files\n into place.\n\n- Investigate the feasability of supporting conversion of binary wheels. Slowly\n but surely the Python community seems to be gravitating towards (binary)\n wheels and once gravity has shifted we don't want to be left in the dust! ;-)\n\n- Make it possible to \"replace\" Python requirements in a requirement set with a\n Debian package that's included in the official repositories (e.g. Pillow_\n becomes python-imaging_ or python-pil_). There are some hairy details\n involved here.\n\n- Dive into PEP-440_ and see if there is a way to fully support it? Then `this\n question on Reddit`_ can finally get a satisfying answer :-).\n\nSimilar projects\n----------------\n\nThere are several projects out there that share similarities with py2deb, for\nexample I know of stdeb_, dh-virtualenv_ and fpm_. The documentation includes a\nfairly `detailed comparison`_ with each of these projects.\n\nContact\n-------\n\nThe latest version of `py2deb` is available on PyPI_ and GitHub_. The\ndocumentation is hosted on `Read the Docs`_ and includes a changelog_. For\nquestions, bug reports, suggestions, etc. please create an issue on GitHub_.\n\nLicense\n-------\n\nThis software is licensed under the `MIT license`_.\n\n\u00a9 2018 Peter Odding, Arjan Verwer and Paylogic International.\n\n.. External references:\n.. _changelog: https://py2deb.readthedocs.io/en/latest/changelog.html\n.. _CPython: https://en.wikipedia.org/wiki/CPython\n.. _deb-pkg-tools: https://pypi.org/project/deb-pkg-tools\n.. _detailed comparison: https://py2deb.readthedocs.io/en/latest/comparisons.html\n.. _dh-virtualenv: https://github.com/spotify/dh-virtualenv\n.. _fpm: https://github.com/jordansissel/fpm\n.. _GitHub: https://github.com/paylogic/py2deb\n.. _Lintian: http://en.wikipedia.org/wiki/Lintian\n.. _MIT license: http://en.wikipedia.org/wiki/MIT_License\n.. _PEP-440: https://www.python.org/dev/peps/pep-0440/\n.. _Pillow: https://python-pillow.github.io/\n.. _pip-accel: https://github.com/paylogic/pip-accel\n.. _PyPI: https://pypi.org/project/py2deb\n.. _PyPy: https://en.wikipedia.org/wiki/PyPy\n.. _python-imaging: https://packages.debian.org/search?keywords=python-imaging\n.. _python-pil: https://packages.debian.org/search?keywords=python-pil\n.. _Read The Docs: https://py2deb.readthedocs.io\n.. _requirement files: http://www.pip-installer.org/en/latest/cookbook.html#requirements-files\n.. _stdeb: https://pypi.org/project/stdeb\n.. _this question on Reddit: https://www.reddit.com/r/Python/comments/2x7s17/py2deb_python_to_debian_package_converter/coxyyzu\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://py2deb.readthedocs.io", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "py2deb", "package_url": "https://pypi.org/project/py2deb/", "platform": "", "project_url": "https://pypi.org/project/py2deb/", "project_urls": { "Homepage": "https://py2deb.readthedocs.io" }, "release_url": "https://pypi.org/project/py2deb/2.1/", "requires_dist": [ "coloredlogs (>=0.5)", "deb-pkg-tools (>=5.2)", "executor (>=21.0)", "humanfriendly (>=4.4)", "pip-accel (>=0.25)", "pkginfo (>=1.1)", "property-manager (>=2.3.1)", "six (>=1.6.1)", "importlib; python_version == \"2.6\" or python_version == \"3.0\"" ], "requires_python": "", "summary": "Python to Debian package converter", "version": "2.1" }, "last_serial": 4603954, "releases": { "0.20.10": [ { "comment_text": "", "digests": { "md5": "370817571751f8fe03c4611451869c03", "sha256": "80266510db126373f8f85d7d1d1f6aa922e868abe530be7a8bcea94a0399b110" }, "downloads": -1, "filename": "py2deb-0.20.10.tar.gz", "has_sig": false, "md5_digest": "370817571751f8fe03c4611451869c03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28877, "upload_time": "2015-03-04T22:37:48", "url": "https://files.pythonhosted.org/packages/29/c0/f6323d75dbd3e051bc2dceac7c36ec29a93539ea2acbc5a3cc7e194aa330/py2deb-0.20.10.tar.gz" } ], "0.20.11": [ { "comment_text": "", "digests": { "md5": "62cc08a5822ad913e662107c2a4d776b", "sha256": "ca85ba0a57a0a8a141573ccad0b9cd2841dcb909f41df68ae54972d44ce411a1" }, "downloads": -1, "filename": "py2deb-0.20.11.tar.gz", "has_sig": false, "md5_digest": "62cc08a5822ad913e662107c2a4d776b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28724, "upload_time": "2015-03-18T20:47:59", "url": "https://files.pythonhosted.org/packages/4e/c0/a483721743882d844991e3ddd27a9dd7a1ff1072caa743423fb75419e9a7/py2deb-0.20.11.tar.gz" } ], "0.20.4": [ { "comment_text": "", "digests": { "md5": "d98aa4ed177b83041ea969184ca6acf5", "sha256": "ef36dfed31dc8cfb6e2d364af411c0788ae7e7c47bc6e34ac86576a0243bd071" }, "downloads": -1, "filename": "py2deb-0.20.4.tar.gz", "has_sig": false, "md5_digest": "d98aa4ed177b83041ea969184ca6acf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26975, "upload_time": "2015-02-25T23:46:36", "url": "https://files.pythonhosted.org/packages/1e/c8/6736e813f14f65e48718feefb98d8043645806f60c571a645a184e380bc9/py2deb-0.20.4.tar.gz" } ], "0.20.5": [ { "comment_text": "", "digests": { "md5": "f77f5409ff51150d7d9d2e08404c4633", "sha256": "e2941e893bdbacde754d90a70d30e7e12aab2bbf94a244880d6ee22dd9170c63" }, "downloads": -1, "filename": "py2deb-0.20.5.tar.gz", "has_sig": false, "md5_digest": "f77f5409ff51150d7d9d2e08404c4633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27275, "upload_time": "2015-02-26T23:13:12", "url": "https://files.pythonhosted.org/packages/5c/24/b4901b6b6172a99ea1df994da242dcf5a909d7a1975f7a15688d2ade5f89/py2deb-0.20.5.tar.gz" } ], "0.20.6": [ { "comment_text": "", "digests": { "md5": "85a1589beaabe2ee0fa4fd7e949c6b45", "sha256": "a8f1bd2c56f313070aef7f233ce0e13ae4e9f32337a0d4d6bbc68fe4fdb0d04d" }, "downloads": -1, "filename": "py2deb-0.20.6.tar.gz", "has_sig": false, "md5_digest": "85a1589beaabe2ee0fa4fd7e949c6b45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28055, "upload_time": "2015-03-01T12:36:31", "url": "https://files.pythonhosted.org/packages/6d/ac/8d040516878b13855d941db148b8fb1fdc5c60f38c8705734830190bf775/py2deb-0.20.6.tar.gz" } ], "0.20.7": [ { "comment_text": "", "digests": { "md5": "8dea43e40d2dfe971896fa2cd455a51a", "sha256": "f04d164e9c9e11ea50eef3a275982b8abb10ec2496684253501bba3bb99d004d" }, "downloads": -1, "filename": "py2deb-0.20.7.tar.gz", "has_sig": false, "md5_digest": "8dea43e40d2dfe971896fa2cd455a51a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28139, "upload_time": "2015-03-01T18:06:09", "url": "https://files.pythonhosted.org/packages/6e/83/1cd6c45e7c2857369fcd51623ee68a2459297071a78419dd9fe60538070a/py2deb-0.20.7.tar.gz" } ], "0.20.8": [ { "comment_text": "", "digests": { "md5": "84a900b261201873febc679dc719f393", "sha256": "3bb76da4ce78e02015ac08bea77300aa8911d1d885d39ce64440589d74f1e0e6" }, "downloads": -1, "filename": "py2deb-0.20.8.tar.gz", "has_sig": false, "md5_digest": "84a900b261201873febc679dc719f393", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28181, "upload_time": "2015-03-01T22:58:48", "url": "https://files.pythonhosted.org/packages/52/0f/95291157a25fcdf4aca7f40a60fe2c3cb801159cff820b624a867ff9a882/py2deb-0.20.8.tar.gz" } ], "0.21": [ { "comment_text": "", "digests": { "md5": "03696eac4f5a1a17b9cbc2f7045cd5c8", "sha256": "8098b702874b6659390f61019ead34c110bfef146e0b2d58d9aad6b4e6ca83ab" }, "downloads": -1, "filename": "py2deb-0.21.tar.gz", "has_sig": false, "md5_digest": "03696eac4f5a1a17b9cbc2f7045cd5c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28737, "upload_time": "2015-04-04T17:50:01", "url": "https://files.pythonhosted.org/packages/e6/f8/f704f1fbc77059a9b30626e3c2cab556388a4bd8f7fb02ab0efcb4756fc2/py2deb-0.21.tar.gz" } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "a6e9fbc0b142e14e4b549beac257c27c", "sha256": "e591b31b614100263baca698b922230b3621aada3e216627c5203ad0d5955763" }, "downloads": -1, "filename": "py2deb-0.21.1.tar.gz", "has_sig": false, "md5_digest": "a6e9fbc0b142e14e4b549beac257c27c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28500, "upload_time": "2015-04-05T08:28:33", "url": "https://files.pythonhosted.org/packages/6d/bb/fe7a834a3d72cbbb4a1bac85007e1b3871bba25404ed39a11346d353ef33/py2deb-0.21.1.tar.gz" } ], "0.22": [ { "comment_text": "", "digests": { "md5": "8eaf04315ab38f270cb4bf0dd0757c28", "sha256": "0c55b28b084e6e873e3237618fd67556e731429a32f6de75a85072b33ea9db9c" }, "downloads": -1, "filename": "py2deb-0.22.tar.gz", "has_sig": false, "md5_digest": "8eaf04315ab38f270cb4bf0dd0757c28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33937, "upload_time": "2015-04-12T01:29:12", "url": "https://files.pythonhosted.org/packages/ef/7d/4a70c062904deddb6a88d31504e51b67efe9c12901c3bd633f624cc9d48e/py2deb-0.22.tar.gz" } ], "0.23": [ { "comment_text": "", "digests": { "md5": "3a1b561dd279404e61d804090c7c75fd", "sha256": "75c8bd6d160e492a299a68d82f544e15e5893b13b681360097fd8ee766e13873" }, "downloads": -1, "filename": "py2deb-0.23.tar.gz", "has_sig": false, "md5_digest": "3a1b561dd279404e61d804090c7c75fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36603, "upload_time": "2015-04-22T07:27:45", "url": "https://files.pythonhosted.org/packages/24/61/28f64ba0a3993d12d7056f861320a9db486ca3f67caa919023c0463e0a90/py2deb-0.23.tar.gz" } ], "0.23.1": [ { "comment_text": "", "digests": { "md5": "203e42bbd7737b935652d61f5ffc59f8", "sha256": "c5441486134e98c9e884f5a18a2302fb6f39207e664ecbc364b1f33804d35e42" }, "downloads": -1, "filename": "py2deb-0.23.1.tar.gz", "has_sig": false, "md5_digest": "203e42bbd7737b935652d61f5ffc59f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34576, "upload_time": "2015-06-28T12:33:39", "url": "https://files.pythonhosted.org/packages/63/21/74cbfc4c78390e86c6561cc3e49ab4c7f04d3a8093f197408a8b43e5cb2b/py2deb-0.23.1.tar.gz" } ], "0.23.2": [ { "comment_text": "", "digests": { "md5": "09032f6e6bed59bbdb0c1d6d3c63a599", "sha256": "f0b699ee8d3d50068bdb0a90db7f0c4581c1b8750bf0f1eabdba5081adda8c62" }, "downloads": -1, "filename": "py2deb-0.23.2.tar.gz", "has_sig": false, "md5_digest": "09032f6e6bed59bbdb0c1d6d3c63a599", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40508, "upload_time": "2015-09-04T14:29:15", "url": "https://files.pythonhosted.org/packages/83/27/6de70e904ca9f0a1c5bbedaf117301fe45725fc424f2a88bf9c9fe18e94e/py2deb-0.23.2.tar.gz" } ], "0.24": [ { "comment_text": "", "digests": { "md5": "492cff4aa353a499a19cef2d3bfc3f50", "sha256": "c304dd0285b454e6a7caae70f18611e92c5b9eca2d7eaf75de63e93e8868370c" }, "downloads": -1, "filename": "py2deb-0.24.tar.gz", "has_sig": false, "md5_digest": "492cff4aa353a499a19cef2d3bfc3f50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38972, "upload_time": "2015-09-24T19:50:03", "url": "https://files.pythonhosted.org/packages/18/22/548374521f4c1b5573a4dae6e76852d31cd8668fd68ad96d7847ed525c2c/py2deb-0.24.tar.gz" } ], "0.24.1": [ { "comment_text": "", "digests": { "md5": "f84401c015853d1b5c1c7d25d64949cf", "sha256": "51b9665a5a9b0aad9d331d67c36317920df05974b790c012ea331d88efbaf3f7" }, "downloads": -1, "filename": "py2deb-0.24.1.tar.gz", "has_sig": false, "md5_digest": "f84401c015853d1b5c1c7d25d64949cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39064, "upload_time": "2015-09-24T20:09:23", "url": "https://files.pythonhosted.org/packages/50/c1/6413a9ce35dfb68866eb0f44e8a4894b6eea3402ac9773881a99d9522def/py2deb-0.24.1.tar.gz" } ], "0.24.2": [ { "comment_text": "", "digests": { "md5": "0a3907ce28637adf397cfaf671acafd0", "sha256": "8ffd126508d9017eda3ebfa0cac2e7b44a8e157498a2d3539ba715a6482b7d12" }, "downloads": -1, "filename": "py2deb-0.24.2.tar.gz", "has_sig": false, "md5_digest": "0a3907ce28637adf397cfaf671acafd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42506, "upload_time": "2016-01-19T15:27:09", "url": "https://files.pythonhosted.org/packages/05/f9/06ca367475a353a78ebff39a9d67374ad5a4331e9607201e2ad2230800b6/py2deb-0.24.2.tar.gz" } ], "0.24.3": [ { "comment_text": "", "digests": { "md5": "c4f67e96ed01356cdc5b20ddbd7045ab", "sha256": "abbb4ec40989dd9362e0131bd7df66fe7d057cc045b18e3e6df4cb6ef589111b" }, "downloads": -1, "filename": "py2deb-0.24.3.tar.gz", "has_sig": false, "md5_digest": "c4f67e96ed01356cdc5b20ddbd7045ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39298, "upload_time": "2016-04-15T13:19:47", "url": "https://files.pythonhosted.org/packages/5a/d4/086dc631cf0192e852341ecb1044d518997d980357d2b644926639ecbeab/py2deb-0.24.3.tar.gz" } ], "0.24.4": [ { "comment_text": "", "digests": { "md5": "cdfbaf079f3b56e714b97be951b78ad5", "sha256": "6aeaa0497579518cf7a3570feeb62caa7c37a666853101a0936aef64161f0d2c" }, "downloads": -1, "filename": "py2deb-0.24.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cdfbaf079f3b56e714b97be951b78ad5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47419, "upload_time": "2017-01-17T01:06:11", "url": "https://files.pythonhosted.org/packages/e8/9f/26e5101c603cc8bc59b16d8ce433dcd084421b3c76497ef0863300af78f0/py2deb-0.24.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abef6be6c717a68b3b3561750d50cb35", "sha256": "db1d48be89e1f626a0c79f90d287574e5cbedf28cfed6e5a6902f94df15caaf0" }, "downloads": -1, "filename": "py2deb-0.24.4.tar.gz", "has_sig": false, "md5_digest": "abef6be6c717a68b3b3561750d50cb35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40288, "upload_time": "2017-01-17T01:06:13", "url": "https://files.pythonhosted.org/packages/8b/45/6db55a53f779e81afd9a7190ddb752d113f45adca9d98c3775812aebcebf/py2deb-0.24.4.tar.gz" } ], "0.25": [ { "comment_text": "", "digests": { "md5": "9cf6a9229e01f03a37be0da0159ee60e", "sha256": "00746cf03a3fcf861e648dfff9f68e290881bdd75e896de8284ec07d31bd511f" }, "downloads": -1, "filename": "py2deb-0.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9cf6a9229e01f03a37be0da0159ee60e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47997, "upload_time": "2017-05-23T07:28:20", "url": "https://files.pythonhosted.org/packages/31/04/684c387c00b7412b39d5beb56f38c99ec97d0b5b24d8d18b564b2e310065/py2deb-0.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6ee7e94c2e43c46f55e3dd3233b8a67", "sha256": "0e78edeeddeab54de699fc6c32c77398625c4c3d064427b1e246abae12c1d4ff" }, "downloads": -1, "filename": "py2deb-0.25.tar.gz", "has_sig": false, "md5_digest": "c6ee7e94c2e43c46f55e3dd3233b8a67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40119, "upload_time": "2017-05-23T07:28:24", "url": "https://files.pythonhosted.org/packages/90/78/a4aedcbba9bc4348732b80fc62d85a43a89b33e1f2674b0617861b974ba3/py2deb-0.25.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "b590806d684116be0580eb46d53076bb", "sha256": "6b9e434bf2d321e7dfc9b5163bed3d99b0fbdff97a24aa8f8b5aaaa3eb98d9fd" }, "downloads": -1, "filename": "py2deb-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b590806d684116be0580eb46d53076bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48280, "upload_time": "2017-08-07T22:18:21", "url": "https://files.pythonhosted.org/packages/dd/60/45b4e7814035e53c543b87d42f4144d365abc9d1afaf1c1e7d61b6b98f78/py2deb-1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c29d9c8cd9713168c3eb4381fc475848", "sha256": "3a9e56d898b1c110f373b82ea9c5ce736981cf000cee3a426d4b365eabbeaf82" }, "downloads": -1, "filename": "py2deb-1.0.tar.gz", "has_sig": false, "md5_digest": "c29d9c8cd9713168c3eb4381fc475848", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40433, "upload_time": "2017-08-07T22:18:23", "url": "https://files.pythonhosted.org/packages/40/c8/7882a60b79eb6eba5b33db4899b0291ce6582b627dd6958fbc5ebf4ad2d9/py2deb-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "66a4b25f079ff27e0237cfa4fd252454", "sha256": "1b39ed2c3da1c4ebd89ff344c9e05b8263152e624034326841cb6cfda2a3ec5e" }, "downloads": -1, "filename": "py2deb-1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66a4b25f079ff27e0237cfa4fd252454", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48803, "upload_time": "2018-02-24T16:56:57", "url": "https://files.pythonhosted.org/packages/f6/36/7b4ab8e5bd868bf143661b639aaccddc40fdf272859d77178ab1ba8db52f/py2deb-1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "056c6ef18f980456f2aa80adf32f5d00", "sha256": "5fdde51908cbd6aee0a2af581b0903ee3902e11e74c80bd34819af2eb4ea3f28" }, "downloads": -1, "filename": "py2deb-1.1.tar.gz", "has_sig": false, "md5_digest": "056c6ef18f980456f2aa80adf32f5d00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49908, "upload_time": "2018-02-24T16:56:58", "url": "https://files.pythonhosted.org/packages/ec/27/67e03101711bb06d79b0bde71c4bb620c5df9c4b35b0082477e1459dd142/py2deb-1.1.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "9bde049c59d63b665f054da5c2c155f4", "sha256": "6ef9c279d619fcbd82de2482290ee3615e6fdf31cf1b2dca090ac5989e15ef8d" }, "downloads": -1, "filename": "py2deb-2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9bde049c59d63b665f054da5c2c155f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47848, "upload_time": "2018-11-18T20:53:33", "url": "https://files.pythonhosted.org/packages/b9/4c/63afc640ae2e9636535784af9ebb4b8a28c93bf320848a22051ce190f574/py2deb-2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2dfc62bf2474a4015a7d9ca2b74e1d43", "sha256": "44d68df70214e4055b94955469c49a3115879469c54eb15467696a5319fdaad2" }, "downloads": -1, "filename": "py2deb-2.0.tar.gz", "has_sig": false, "md5_digest": "2dfc62bf2474a4015a7d9ca2b74e1d43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67423, "upload_time": "2018-11-18T20:53:35", "url": "https://files.pythonhosted.org/packages/f2/6b/4f43a68210b9656b1f8aa874e96f93f845bdfe07311393f6fa641158d706/py2deb-2.0.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "6950e448a37590d412c13a88dbed7cc2", "sha256": "bce296c18c51c905417d9b127a7fbe902618b6508e383447173dfe5ed91d9afa" }, "downloads": -1, "filename": "py2deb-2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6950e448a37590d412c13a88dbed7cc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48187, "upload_time": "2018-12-16T00:23:48", "url": "https://files.pythonhosted.org/packages/8d/59/35637925155ed30088a25dfc5812548c5495a72b1430838d84795d9347d6/py2deb-2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "507c906405390337820c31d2397abadb", "sha256": "649a65999e431431fe818e42b415b5e42a8a21a1309920d8fee90d3274f132b8" }, "downloads": -1, "filename": "py2deb-2.1.tar.gz", "has_sig": false, "md5_digest": "507c906405390337820c31d2397abadb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67891, "upload_time": "2018-12-16T00:23:50", "url": "https://files.pythonhosted.org/packages/d0/90/5ea2a43050db51ae36dedf9d736f99359d5c960fccccd60279ce4d9aa2ae/py2deb-2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6950e448a37590d412c13a88dbed7cc2", "sha256": "bce296c18c51c905417d9b127a7fbe902618b6508e383447173dfe5ed91d9afa" }, "downloads": -1, "filename": "py2deb-2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6950e448a37590d412c13a88dbed7cc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48187, "upload_time": "2018-12-16T00:23:48", "url": "https://files.pythonhosted.org/packages/8d/59/35637925155ed30088a25dfc5812548c5495a72b1430838d84795d9347d6/py2deb-2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "507c906405390337820c31d2397abadb", "sha256": "649a65999e431431fe818e42b415b5e42a8a21a1309920d8fee90d3274f132b8" }, "downloads": -1, "filename": "py2deb-2.1.tar.gz", "has_sig": false, "md5_digest": "507c906405390337820c31d2397abadb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67891, "upload_time": "2018-12-16T00:23:50", "url": "https://files.pythonhosted.org/packages/d0/90/5ea2a43050db51ae36dedf9d736f99359d5c960fccccd60279ce4d9aa2ae/py2deb-2.1.tar.gz" } ] }