aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS.txt5
-rw-r--r--setup.py10
-rw-r--r--yamlish.py2
3 files changed, 13 insertions, 4 deletions
diff --git a/NEWS.txt b/NEWS.txt
index d41aca0..f929262 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -7,4 +7,7 @@
0.3 2012-03-08
* Excuse me, son, but your tempfiles are leaking !!!
- * Also fixing python setup.py test so that it actually does something. \ No newline at end of file
+ * Also fixing python setup.py test so that it actually does something.
+
+0.4 2012-03-09
+ * Missing requires field in setup.py \ No newline at end of file
diff --git a/setup.py b/setup.py
index f4b2acb..b9c05ed 100644
--- a/setup.py
+++ b/setup.py
@@ -45,6 +45,9 @@ setup(
cmdclass={'test': RunTests},
classifiers=[
"Programming Language :: Python",
+ "Programming Language :: Python :: 2",
+ "Programming Language :: Python :: 2.6",
+ "Programming Language :: Python :: 2.7",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
@@ -52,6 +55,9 @@ setup(
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
- ]
+ ],
+ requires=[
+ "PyYAML (>=3.09)",
+ "unittest2"
+ ],
)
-
diff --git a/yamlish.py b/yamlish.py
index fd95d85..80e6d27 100644
--- a/yamlish.py
+++ b/yamlish.py
@@ -113,7 +113,7 @@ Read more about TAP and YAMLish here: L<http://testanything.org/wiki>
import logging
import yaml
-__version__ = "0.3"
+__version__ = "0.4"
__author__ = "Matěj Cepl <mcepl_at_redhat_dot_com>"
class _YamlishLoader(yaml.loader.SafeLoader):