{ "info": { "author": "Youwang Deng", "author_email": "dengyouwang@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "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 :: Implementation", "Topic :: Software Development :: Libraries" ], "description": "# Aureus\n\nAureus is a lightweight web application framework. It supports\nModel-View-Controller (MVC) architectural pattern. It is designed to\nmake getting started quick and easy, with the ability to scale up to\ncomplex applications.\n\n## Installing\n\nInstall and update using\n[pip](https://pip.pypa.io/en/stable/quickstart/):\n\n```bash\npip install -U aureus\n```\n\n## A Simple Example\n\n```Python\nfrom aureus import AUREUS\n\napp = AUREUS()\n\n@app.route('/', methods=['GET'])\ndef hello():\n return '