from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages version = '0.9.5' setup( name="Pylons", version=version, description='Pylons Web Framework', long_description=""" Pylons ====== The Pylons web framework is aimed at making webapps and large programmatic website development in Python easy. Several key points: * A framework to make writing web applications in Python easy * Inspired by Rails and TurboGears * Utilizes a minimalist, component-based philosophy that makes it easy to expand on * Harness existing knowledge about Python Knowing Python makes Pylons easy --------------------------------- Pylons makes it easy to expand on your knowledge of Python to master Pylons for web development. Using a MVC style dispath, Python knowledge is used at various levels: * The Controller is just a basic Python class, called for each request. Customizing the response is as easy as overriding __call__ to make your webapp work how you want. * Myghty templating compiles directly to Python byte-code for speed and utilizes Python for template control rather than creating its own template syntax for "for, while, etc" Current Status --------------- Pylons %s described on this page is stable. There is also an unstable `develoment version `_ of Pylons. Download and Installation ------------------------- Pylons can be installed with `Easy Install `_ by typing:: > easy_install Pylons Dependant packages are automatically installed from the `Pylons download page `_ . """%version, keywords='web wsgi framework sqlalchemy formencode myghty templates buffet', license='BSD', author='Ben Bangert, James Gardner, Philip Jenvey', author_email='ben@groovie.org', url='http://www.pylonshq.com/', packages=find_packages(exclude=['ez_setup']), zip_safe=False, include_package_data=True, install_requires=[ "Routes>=1.6.3", "WebHelpers>=0.3", "Beaker>=0.6.3", "Paste>=1.3", "PasteDeploy>=1.3", "PasteScript>=1.3.2", "Myghty>=1.1", "FormEncode>=0.7", "simplejson>=1.7.1", "decorator>=2.0.1", "nose>=0.9.2", "Mako>=0.1.5" ], classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules", ], extras_require = { 'pudge': ["docutils>=0.4", "elementtree>=1.2.6", "kid>=0.9", "Pygments>=0.7", "pudge>=0.1.3", "buildutils>=0.1.2",], 'cheetah':["Cheetah>=1.0", "TurboCheetah>=0.9.5"], 'kid':["kid>=0.9", "TurboKid>=0.9.1"], 'genshi':["Genshi>=0.3.6"], 'full':[ "docutils>=0.4", "elementtree>=1.2.6", "Pygments>=0.7", "pudge>=0.1.3", "buildutils>=0.1.2", "Cheetah>=1.0", "TurboCheetah>=0.9.5", "kid>=0.9", "TurboKid>=0.9.", ], }, entry_points=""" [paste.paster_command] controller=pylons.commands:ControllerCommand restcontroller=pylons.commands:RestControllerCommand shell=pylons.commands:ShellCommand [paste.paster_create_template] pylons=pylons.util:PylonsTemplate pylons_minimal=pylons.util:MinimalPylonsTemplate [python.templating.engines] pylonsmyghty = pylons.templating:MyghtyTemplatePlugin """, )