| 2 | | NAME = 'PyYAML3000' |
| 3 | | VERSION = '0.1' |
| 4 | | DESCRIPTION = "The next generation YAML parser for Python" |
| | 2 | NAME = 'PyYAML' |
| | 3 | VERSION = '3.0' |
| | 4 | DESCRIPTION = "YAML parser and emitter for Python" |
| | 5 | LONG_DESCRIPTION = """\ |
| | 6 | YAML is a data serialization format designed for human readability and |
| | 7 | interaction with scripting languages. PyYAML is a YAML parser and emitter |
| | 8 | for Python. |
| | 9 | |
| | 10 | PyYAML features a complete YAML 1.1 parser, Unicode support, event-based parser |
| | 11 | 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. |
| | 14 | |
| | 15 | PyYAML is applicable for a broad range of tasks from configuration files to |
| | 16 | object persistance.""" |
| | 20 | PLATFORMS = "Any" |
| | 21 | URL = "http://pyyaml.org/wiki/PyYAML" |
| | 22 | DOWNLOAD_URL = "http://pyyaml.org/download/pyyaml/%s-%s.tar.gz" % (NAME, VERSION) |
| | 23 | CLASSIFIERS = [ |
| | 24 | "Development Status :: 4 - Beta", |
| | 25 | "Intended Audience :: Developers", |
| | 26 | "License :: OSI Approved :: MIT License", |
| | 27 | "Operating System :: OS Independent", |
| | 28 | "Programming Language :: Python", |
| | 29 | "Topic :: Software Development :: Libraries :: Python Modules", |
| | 30 | "Topic :: Text Processing :: Markup", |
| | 31 | ] |
| | 32 | |