Changeset 776

Show
Ignore:
Timestamp:
04/16/07 23:30:07 (5 years ago)
Author:
bycycle
Message:

* Added version numbers to dependencies
* Updated long_description and url to point to Google Code

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • spinoffs/Restler/setup.py

    r716 r776  
    66    version='0.1a0', 
    77 
    8     description='Magical RESTful controller for Pylons.', 
     8    description='RESTful base controller for Pylons', 
    99 
    1010    long_description=""" 
    11 Restler 
    12 +++++++ 
    13      
    14 Introduction 
    15 ============ 
     11Restler 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. 
    1612 
    17 Restler offers a "convention-over-configuration" approach to building 
    18 Pylons Web applications, similar to Rails. 
     13The Restler project is now hosted at Google Code. Please http://code.google.com/p/restler/ for more details, documentation, etc. 
    1914 
    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. 
     15Restler was extracted from the byCycle.org Trip Planner (http://tripplanner.bycycle.org). 
    2316 
    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""", 
    4118    license='BSD/MIT', 
    4219    author='Wyatt L Baldwin, byCycle.org', 
    4320    author_email='wyatt@byCycle.org', 
    4421    keywords='web pylons REST', 
    45     url='http://wyattbaldwin.com/', 
     22    url='http://code.google.com/p/restler/', 
    4623    classifiers=[ 
    4724        'Development Status :: 3 - Alpha', 
     
    5734    zip_safe=False, 
    5835    install_requires=( 
    59         'Elixir', 
    60         'simplejson', 
     36        'Elixir>=0.3.0', 
     37        'simplejson>=1.7.1', 
    6138        ), 
    6239    test_suite = 'nose.collector',