Changeset 4744
- Timestamp:
- 06/15/08 17:29:15 (2 months ago)
- Files:
-
- projects/TurboJson/trunk/release_howto.txt (modified) (1 diff)
- projects/TurboJson/trunk/setup.cfg (modified) (1 diff)
- projects/TurboJson/trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
projects/TurboJson/trunk/release_howto.txt
r4581 r4744 12 12 version number. 13 13 14 .. note::14 .. note:: 15 15 The TurboJson trunk starting with version 1.2 removed the dependency on 16 16 RuleDispatch and uses PEAK-Rules instead. TurboJson versions >= 1.2 are 17 17 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. 19 19 20 20 2) Create the eggs with the desired Python version using the following projects/TurboJson/trunk/setup.cfg
r2331 r4744 1 1 [egg_info] 2 tag_build = dev2 tag_build = .dev 3 3 tag_svn_revision = true projects/TurboJson/trunk/setup.py
r4581 r4744 1 # -*- coding: UTF-8 -*- 2 1 3 from setuptools import setup, find_packages 2 4 3 5 setup( 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(), 18 25 classifiers = [ 19 26 'Development Status :: 4 - Beta', … … 25 32 'Topic :: Software Development :: Libraries :: Python Modules' 26 33 ], 27 entry_points ="""34 entry_points = """\ 28 35 [python.templating.engines] 29 36 json = turbojson.jsonsupport:JsonSupport 30 37 """, 31 test_suite = 'nose.collector', 32 ) 33 38 test_suite = 'nose.collector' 39 )