Final touches before the initial release.

This commit is contained in:
Kirill Simonov 2006-05-07 14:36:42 +00:00
parent 43ffedd470
commit 8f22ae6de3
3 changed files with 15 additions and 11 deletions

View File

@ -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

3
README
View File

@ -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'.

View File

@ -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"