Changeset 165
- Timestamp:
- 05/15/06 02:49:37 (7 years ago)
- Location:
- pyyaml/trunk
- Files:
-
- 3 edited
-
MANIFEST.in (modified) (1 diff)
-
announcement.msg (modified) (4 diffs)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/MANIFEST.in
r59 r165 1 1 include README LICENSE 2 recursive-include examples *.py *.cfg -
pyyaml/trunk/announcement.msg
r160 r165 1 1 From: Kirill Simonov <xi@gamma.dn.ua> 2 2 To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net 3 Subject: PyYAML-3.01: Initial Release3 Subject: [ANN] PyYAML-3.02: YAML parser and emitter for Python 4 4 5 PyYAML: YAML parser and emitter for Python 6 ========================================== 5 ======================== 6 Announcing PyYAML-3.02 7 ======================== 8 9 A new bug-fix release of PyYAML is now available: 10 11 http://pyyaml.org/wiki/PyYAML 12 13 14 Changes 15 ======= 16 17 * Fix win32 installer. Apparently bdist_wininst does not work under Linux. 18 * Fix a bug in add_path_resolver. 19 * Add the yaml_hl example. Try to run on a color terminal: 20 `python yaml_hl.py <any_document.yaml` 21 22 23 Resources 24 ========= 25 26 PyYAML homepage: http://pyyaml.org/wiki/PyYAML 27 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation 28 29 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.02.tar.gz 30 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.02.zip 31 Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.02.win32.exe 32 33 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml 34 Submit a bug report: http://pyyaml.org/newticket?component=pyyaml 35 36 YAML homepage: http://yaml.org/ 37 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core 38 39 40 About PyYAML 41 ============ 7 42 8 43 YAML is a data serialization format designed for human readability and … … 18 53 configuration files to object serialization and persistance. 19 54 20 You may download PyYAML from http://pyyaml.org/wiki/PyYAML.21 22 55 23 56 Example … … 28 61 >>> yaml.load(""" 29 62 ... name: PyYAML 30 ... version: 3.0131 63 ... description: YAML parser and emitter for Python 32 64 ... homepage: http://pyyaml.org/wiki/PyYAML … … 34 66 ... """) 35 67 {'keywords': ['YAML', 'serialization', 'configuration', 'persistance', 36 'pickle'], ' version': 3.01, 'homepage': 'http://pyyaml.org/wiki/PyYAML',37 ' description': 'YAML parser and emitter for Python', 'name': 'PyYAML'}68 'pickle'], 'homepage': 'http://pyyaml.org/wiki/PyYAML', 'description': 69 'YAML parser and emitter for Python', 'name': 'PyYAML'} 38 70 39 71 >>> print yaml.dump(_) 72 name: PyYAML 40 73 homepage: http://pyyaml.org/wiki/PyYAML 41 version: 3.01 42 name: PyYAML 74 description: YAML parser and emitter for Python 43 75 keywords: [YAML, serialization, configuration, persistance, pickle] 44 description: YAML parser and emitter for Python45 46 47 Links48 =====49 50 PyYAML homepage: http://pyyaml.org/wiki/PyYAML51 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation52 53 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.01.tar.gz54 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.01.zip55 Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.01.win32.exe56 57 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml58 Submit a bug report: http://pyyaml.org/newticket?component=pyyaml59 60 YAML homepage: http://yaml.org/61 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core62 63 64 Changes65 =======66 67 * Initial release. The version number reflects the codename of the68 project (PyYAML 3000) and differenciates it from the abandoned PyYaml69 module.70 76 71 77 -
pyyaml/trunk/setup.py
r156 r165 1 1 2 2 NAME = 'PyYAML' 3 VERSION = '3.0 1'3 VERSION = '3.02' 4 4 DESCRIPTION = "YAML parser and emitter for Python" 5 5 LONG_DESCRIPTION = """\
Note: See TracChangeset
for help on using the changeset viewer.
