Changeset 4744

Show
Ignore:
Timestamp:
06/15/08 17:29:15 (2 months ago)
Author:
carndt
Message:

Cosmetic pre-release changes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/TurboJson/trunk/release_howto.txt

    r4581 r4744  
    1212   version number. 
    1313 
    14   .. note:: 
     14  .. note:: 
    1515        The TurboJson trunk starting with version 1.2 removed the dependency on 
    1616        RuleDispatch and uses PEAK-Rules instead. TurboJson versions >= 1.2 are 
    1717        intended to be used with TurboGears 1.1.x. If you want to update 
    18         TurboJson for TurboGears 1.0.x, pleas use the TurboJson 1.1 branch. 
     18        TurboJson for TurboGears 1.0.x, please use the TurboJson 1.1 branch. 
    1919 
    20202) Create the eggs with the desired Python version using the following 
  • projects/TurboJson/trunk/setup.cfg

    r2331 r4744  
    11[egg_info] 
    2 tag_build = dev 
     2tag_build = .dev 
    33tag_svn_revision = true 
  • projects/TurboJson/trunk/setup.py

    r4581 r4744  
     1# -*- coding: UTF-8 -*- 
     2 
    13from setuptools import setup, find_packages 
    24 
    35setup( 
    4     name="TurboJson", 
    5     version="1.2", 
    6     description="Python template plugin that supports JSON", 
    7     author="Elvelind Grandin", 
    8     author_email="elvelind+turbogears@gmail.com", 
    9     maintainer="TurboGears project", 
    10     maintainer_email="turbogears@googlegroups.com", 
    11     url="http://docs.turbogears.org/TurboJson", 
    12     download_url="http://pypi.python.org/pypi/TurboJson", 
    13     license="MIT", 
    14     keywords=["python.templating.engines", "turbogears"], 
    15     install_requires=["PEAK-Rules"], 
    16     zip_safe=True, 
    17     packages=find_packages(), 
     6    name = 'TurboJson', 
     7    version = '1.2', 
     8    description = 'Python template plugin that supports JSON', 
     9    author = 'Elvelind Grandin', 
     10    author_email = 'elvelind+turbogears@gmail.com', 
     11    maintainer = 'TurboGears project', 
     12    maintainer_email =  'turbogears@googlegroups.com', 
     13    url = 'http://docs.turbogears.org/TurboJson', 
     14    download_url = 'http://pypi.python.org/pypi/TurboJson', 
     15    license = 'MIT', 
     16    keywords = [ 
     17        'python.templating.engines', 
     18        'turbogears' 
     19    ], 
     20    install_requires = [ 
     21        'PEAK-Rules' 
     22    ], 
     23    zip_safe = True, 
     24    packages = find_packages(), 
    1825    classifiers = [ 
    1926        'Development Status :: 4 - Beta', 
     
    2532        'Topic :: Software Development :: Libraries :: Python Modules' 
    2633    ], 
    27     entry_points=""" 
     34    entry_points = """\ 
    2835    [python.templating.engines] 
    2936    json = turbojson.jsonsupport:JsonSupport 
    3037    """, 
    31     test_suite = 'nose.collector', 
    32     ) 
    33  
     38    test_suite = 'nose.collector' 
     39