{ "info": { "author": "koji-kojiro", "author_email": "kojiro0531@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development" ], "description": "WIP\n===\n\nHypo\n====\n\n| |MIT License| |python| |PyPI|\n| `Hy `__ is a LISP dialect running on a\n Python virtual machine. **Hypo** allows you to build small\n applications from Hy source files. Similar to Python's\n `zipapp `__, **Hypo**\n creates executable archives. Since the Hy source files will be\n compiled into .pyc files, the executable archive will run faster than\n on interpreter.\n\nRequirements\n------------\n\n- Python >= (2.6, 3.5)\n- Hy >= 0.12.1\n\nInstallation\n------------\n\n::\n\n $ pip install hypo\n\nUsage\n-----\n\n::\n\n $ hypo --help\n usage: hypo [options] \n\n options:\n -o [file] output name\n --version show program's version number and exit\n --help show this message and exit\n\nExample\n-------\n\nYou can build these source files as follows:\n\n::\n\n $ hypo -o app main.hy iota.hy\n\nAnd you can execute the application as follows:\n\n::\n\n $ ./app\n (0L 1L 2L 3L 4L 5L 6L 7L 8L 9L)\n\nor\n\n::\n\n $ python app\n (0L 1L 2L 3L 4L 5L 6L 7L 8L 9L)\n\nSource files\n~~~~~~~~~~~~\n\n- iota.hy\n\n.. code:: clj\n\n (defn iota [m &optional [n 0] [step 1]]\n (if (>= n m)\n None\n (cons n (iota m (+ n step) step))))\n\n- main.hy\n\n.. code:: clj\n\n (import [iota [iota]])\n\n (defmain [&rest args]\n (print (iota 10)))\n\nLicense\n-------\n\nDistributed under `MIT\nLicense `__.\n\nAuthor\n------\n\n`Kojiro TANI `__ (kojiro0531@gmail.com)\n\n.. |MIT License| image:: http://img.shields.io/badge/license-MIT-blue.svg?style=flat\n :target: https://github.com/koji-kojiro/hylang-hypo/blob/master/LICENSE\n.. |python| image:: https://img.shields.io/badge/python-2.6%2B%2C%203.3%2B-red.svg\n :target: https://pypi.python.org/pypi/hypo\n.. |PyPI| image:: https://img.shields.io/pypi/v/hypo.svg\n :target: https://pypi.python.org/pypi/hypo", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/koji-kojiro/hylang-hypo", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "hypo", "package_url": "https://pypi.org/project/hypo/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/hypo/", "project_urls": { "Homepage": "https://github.com/koji-kojiro/hylang-hypo" }, "release_url": "https://pypi.org/project/hypo/0.1.0/", "requires_dist": null, "requires_python": "", "summary": "Build small applications from Hy source files", "version": "0.1.0" }, "last_serial": 2854245, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "19308ab670b336f3f2dc14a981a6ef32", "sha256": "b5fbf7f1e8b7cda6082ea4a908eb113c73c8399d2ca47c15308b4310ac602238" }, "downloads": -1, "filename": "hypo-0.1.0.tar.gz", "has_sig": false, "md5_digest": "19308ab670b336f3f2dc14a981a6ef32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3159, "upload_time": "2017-05-05T16:59:56", "url": "https://files.pythonhosted.org/packages/55/df/20159e82d433f1812b0306d5a9782278ec3139dd3a4cbc8e220447239a6e/hypo-0.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "19308ab670b336f3f2dc14a981a6ef32", "sha256": "b5fbf7f1e8b7cda6082ea4a908eb113c73c8399d2ca47c15308b4310ac602238" }, "downloads": -1, "filename": "hypo-0.1.0.tar.gz", "has_sig": false, "md5_digest": "19308ab670b336f3f2dc14a981a6ef32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3159, "upload_time": "2017-05-05T16:59:56", "url": "https://files.pythonhosted.org/packages/55/df/20159e82d433f1812b0306d5a9782278ec3139dd3a4cbc8e220447239a6e/hypo-0.1.0.tar.gz" } ] }