mirror of
https://gitee.com/openharmony/third_party_pyyaml
synced 2024-11-23 15:30:46 +00:00
Final touches before the initial release.
This commit is contained in:
parent
43ffedd470
commit
8f22ae6de3
5
Makefile
5
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
|
PYTHON=/usr/bin/python
|
||||||
TEST=
|
TEST=
|
||||||
@ -17,8 +17,9 @@ install: build
|
|||||||
test: build
|
test: build
|
||||||
${PYTHON} tests/test_build.py ${TEST}
|
${PYTHON} tests/test_build.py ${TEST}
|
||||||
|
|
||||||
dist-src:
|
dist: build
|
||||||
${PYTHON} setup.py sdist --formats=zip,gztar
|
${PYTHON} setup.py sdist --formats=zip,gztar
|
||||||
|
${PYTHON} setup.py bdist_wininst
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
${PYTHON} setup.py clean -a
|
${PYTHON} setup.py clean -a
|
||||||
|
3
README
3
README
@ -5,6 +5,9 @@ To install, type 'python setup.py install'.
|
|||||||
For more information, check the PyYAML homepage:
|
For more information, check the PyYAML homepage:
|
||||||
'http://pyyaml.org/wiki/PyYAML'.
|
'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:
|
Post your questions and opinions to the YAML-Core mailing list:
|
||||||
'http://lists.sourceforge.net/lists/listinfo/yaml-core'.
|
'http://lists.sourceforge.net/lists/listinfo/yaml-core'.
|
||||||
|
|
||||||
|
18
setup.py
18
setup.py
@ -1,19 +1,19 @@
|
|||||||
|
|
||||||
NAME = 'PyYAML'
|
NAME = 'PyYAML'
|
||||||
VERSION = '3.0'
|
VERSION = '3.01'
|
||||||
DESCRIPTION = "YAML parser and emitter for Python"
|
DESCRIPTION = "YAML parser and emitter for Python"
|
||||||
LONG_DESCRIPTION = """\
|
LONG_DESCRIPTION = """\
|
||||||
YAML is a data serialization format designed for human readability and
|
YAML is a data serialization format designed for human readability and
|
||||||
interaction with scripting languages. PyYAML is a YAML parser and emitter
|
interaction with scripting languages. PyYAML is a YAML parser and
|
||||||
for Python.
|
emitter for Python.
|
||||||
|
|
||||||
PyYAML features a complete YAML 1.1 parser, Unicode support, event-based parser
|
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
|
||||||
and emitter (like SAX), API for serializing and deserializing Python objects
|
support, capable extension API, and sensible error messages. PyYAML
|
||||||
(like DOM or pickle). PyYAML supports all tags from the YAML types repository
|
supports standard YAML tags and provides Python-specific tags that allow
|
||||||
and allows you to extend it easily.
|
to represent an arbitrary Python object.
|
||||||
|
|
||||||
PyYAML is applicable for a broad range of tasks from configuration files to
|
PyYAML is applicable for a broad range of tasks from complex
|
||||||
object persistance."""
|
configuration files to object serialization and persistance."""
|
||||||
AUTHOR = "Kirill Simonov"
|
AUTHOR = "Kirill Simonov"
|
||||||
AUTHOR_EMAIL = 'xi@resolvent.net'
|
AUTHOR_EMAIL = 'xi@resolvent.net'
|
||||||
LICENSE = "MIT"
|
LICENSE = "MIT"
|
||||||
|
Loading…
Reference in New Issue
Block a user