Changeset 776
- Timestamp:
- 04/16/07 23:30:07 (5 years ago)
- Files:
-
- 1 modified
-
spinoffs/Restler/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
spinoffs/Restler/setup.py
r716 r776 6 6 version='0.1a0', 7 7 8 description=' Magical RESTful controller for Pylons.',8 description='RESTful base controller for Pylons', 9 9 10 10 long_description=""" 11 Restler 12 +++++++ 13 14 Introduction 15 ============ 11 Restler is a controller for Pylons projects that provides a set of default RESTful actions that can be overridden as needed. It also handles database connectivity as long as a few simple rules are followed. 16 12 17 Restler offers a "convention-over-configuration" approach to building 18 Pylons Web applications, similar to Rails. 13 The Restler project is now hosted at Google Code. Please http://code.google.com/p/restler/ for more details, documentation, etc. 19 14 20 This package was extracted from the byCycle.org Trip Planner 21 (http://tripplanner.bycycle.org). It is licensed under either the BSD or 22 MIT license. 15 Restler was extracted from the byCycle.org Trip Planner (http://tripplanner.bycycle.org). 23 16 24 25 Installation 26 ============ 27 28 After running easy_install or equivalent, add the following lines 29 *below* the ``BaseController`` class definition:: 30 31 import restler as __restler 32 execfile(__restler.include_path) 33 34 35 Details 36 ======= 37 38 %s 39 40 """ % base__doc__, 17 """, 41 18 license='BSD/MIT', 42 19 author='Wyatt L Baldwin, byCycle.org', 43 20 author_email='wyatt@byCycle.org', 44 21 keywords='web pylons REST', 45 url='http:// wyattbaldwin.com/',22 url='http://code.google.com/p/restler/', 46 23 classifiers=[ 47 24 'Development Status :: 3 - Alpha', … … 57 34 zip_safe=False, 58 35 install_requires=( 59 'Elixir ',60 'simplejson ',36 'Elixir>=0.3.0', 37 'simplejson>=1.7.1', 61 38 ), 62 39 test_suite = 'nose.collector',