diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | README.rst (renamed from README.txt) | 34 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 27 insertions, 16 deletions
@@ -3,3 +3,4 @@ MANIFEST build/ dist/ +yamlish.egg-info/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..20af494 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: python +python: + - "2.6" + - "2.7" + - "pypy" +script: PYTHONPATH=$PYTHONPATH:. python setup.py test @@ -1,15 +1,19 @@ -YAMLish is a small subset of YAML that TAP producers may use to
-embed machine readable information in TAP diagnostics. See TAP
-diagnostic syntax for information about how YAMLish embeds in
-TAP.
-
-----------------------------
-Based on Data-YAML version 0.0.6
-(Copyright (C) 2007, Andy Armstrong)
-but it is so thoroughly rewritten that I don't consider it
-derived work and I don't feel the need to resolve what "This
-library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself." actually means.
-
-Whole this package is licensed under MIT/X11 license (see header
-of yamlish.py for details).
+.. image:: https://travis-ci.org/mcepl/yamlish.svg?branch=master + :target: https://travis-ci.org/mcepl/yamlish + +YAMLish is a small subset of YAML that TAP producers may use to +embed machine readable information in TAP diagnostics. See TAP +diagnostic syntax for information about how YAMLish embeds in +TAP. + +---------------------------- + +Based on Data-YAML version 0.0.6 +(Copyright (C) 2007, Andy Armstrong) +but it is so thoroughly rewritten that I don't consider it +derived work and I don't feel the need to resolve what "This +library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself." actually means. + +Whole this package is licensed under MIT/X11 license (see header +of yamlish.py for details). @@ -18,7 +18,7 @@ setup( author_email='mcepl@redhat.com', url='http://luther.ceplovi.cz/git/?p=yamlish.git;a=summary', py_modules=['yamlish'], - long_description=read("README.txt"), + long_description=read("README.rst"), keywords=['TAP', 'YAML', 'yamlish'], classifiers=[ "Programming Language :: Python", |