Changeset 156
- Timestamp:
- 05/07/06 10:36:42 (2 years ago)
- Files:
-
- pyyaml/trunk/Makefile (modified) (2 diffs)
- pyyaml/trunk/README (modified) (1 diff)
- pyyaml/trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pyyaml/trunk/Makefile
r59 r156 1 1 2 .PHONY: default build force install test dist -srcclean2 .PHONY: default build force install test dist clean 3 3 4 4 PYTHON=/usr/bin/python … … 18 18 ${PYTHON} tests/test_build.py ${TEST} 19 19 20 dist -src:20 dist: build 21 21 ${PYTHON} setup.py sdist --formats=zip,gztar 22 ${PYTHON} setup.py bdist_wininst 22 23 23 24 clean: pyyaml/trunk/README
r149 r156 5 5 For more information, check the PyYAML homepage: 6 6 'http://pyyaml.org/wiki/PyYAML'. 7 8 Documentation (rough and incomplete though): 9 'http://pyyaml.org/wiki/PyYAMLDocumentation'. 7 10 8 11 Post your questions and opinions to the YAML-Core mailing list: pyyaml/trunk/setup.py
r150 r156 1 1 2 2 NAME = 'PyYAML' 3 VERSION = '3.0 '3 VERSION = '3.01' 4 4 DESCRIPTION = "YAML parser and emitter for Python" 5 5 LONG_DESCRIPTION = """\ 6 6 YAML is a data serialization format designed for human readability and 7 interaction with scripting languages. PyYAML is a YAML parser and emitter8 for Python.7 interaction with scripting languages. PyYAML is a YAML parser and 8 emitter for Python. 9 9 10 PyYAML features a complete YAML 1.1 parser, Unicode support, event-based parser11 and emitter (like SAX), API for serializing and deserializing Python objects 12 (like DOM or pickle). PyYAML supports all tags from the YAML types repository 13 and allows you to extend it easily.10 PyYAML features a complete YAML 1.1 parser, Unicode support, pickle 11 support, capable extension API, and sensible error messages. PyYAML 12 supports standard YAML tags and provides Python-specific tags that allow 13 to represent an arbitrary Python object. 14 14 15 PyYAML is applicable for a broad range of tasks from co nfiguration files to16 objectpersistance."""15 PyYAML is applicable for a broad range of tasks from complex 16 configuration files to object serialization and persistance.""" 17 17 AUTHOR = "Kirill Simonov" 18 18 AUTHOR_EMAIL = 'xi@resolvent.net'
