-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Is there any interest in getting this so it can be installed via
pip/easy_install? Possibly adding support for tox?
Actually this is a patch for the latter (it has a problem with pypy though -
sort order seems different?):
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0ac728b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.pyc
+.tox/
+python_gflags.egg-info/
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..b51f490
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,9 @@
+[tox]
+envlist=py26,py27,pypy
+
+[testenv]
+commands=
+ python tests/gflags_googletest.py
+ python tests/gflags_helpxml_test.py
+ python tests/gflags_unittest.py
+ python tests/gflags_validators_test.py
Original issue reported on code.google.com by kevin@ie.suberic.net on 12 Nov 2012 at 8:19