From 1bebe67618741b29cd6245165b97930ff85bb24e Mon Sep 17 00:00:00 2001 From: xi Date: Sun, 7 May 2006 14:39:20 +0000 Subject: Release!!!!! git-svn-id: http://svn.pyyaml.org/pyyaml/tags/3.01@157 18f92427-320e-0410-9341-c67f048884a3 --- Makefile | 5 +++-- README | 3 +++ setup.py | 18 +++++++++--------- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 4536e72..6c38d53 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -.PHONY: default build force install test dist-src clean +.PHONY: default build force install test dist clean PYTHON=/usr/bin/python TEST= @@ -17,8 +17,9 @@ install: build test: build ${PYTHON} tests/test_build.py ${TEST} -dist-src: +dist: build ${PYTHON} setup.py sdist --formats=zip,gztar + ${PYTHON} setup.py bdist_wininst clean: ${PYTHON} setup.py clean -a diff --git a/README b/README index 72be3c9..8a6dec7 100644 --- a/README +++ b/README @@ -5,6 +5,9 @@ To install, type 'python setup.py install'. For more information, check the PyYAML homepage: 'http://pyyaml.org/wiki/PyYAML'. +Documentation (rough and incomplete though): +'http://pyyaml.org/wiki/PyYAMLDocumentation'. + Post your questions and opinions to the YAML-Core mailing list: 'http://lists.sourceforge.net/lists/listinfo/yaml-core'. diff --git a/setup.py b/setup.py index 8cdd1ed..23c1efa 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,19 @@ NAME = 'PyYAML' -VERSION = '3.0' +VERSION = '3.01' DESCRIPTION = "YAML parser and emitter for Python" LONG_DESCRIPTION = """\ YAML is a data serialization format designed for human readability and -interaction with scripting languages. PyYAML is a YAML parser and emitter -for Python. +interaction with scripting languages. PyYAML is a YAML parser and +emitter for Python. -PyYAML features a complete YAML 1.1 parser, Unicode support, event-based parser -and emitter (like SAX), API for serializing and deserializing Python objects -(like DOM or pickle). PyYAML supports all tags from the YAML types repository -and allows you to extend it easily. +PyYAML features a complete YAML 1.1 parser, Unicode support, pickle +support, capable extension API, and sensible error messages. PyYAML +supports standard YAML tags and provides Python-specific tags that allow +to represent an arbitrary Python object. -PyYAML is applicable for a broad range of tasks from configuration files to -object persistance.""" +PyYAML is applicable for a broad range of tasks from complex +configuration files to object serialization and persistance.""" AUTHOR = "Kirill Simonov" AUTHOR_EMAIL = 'xi@resolvent.net' LICENSE = "MIT" -- cgit v1.2.1