From 4809428de71b43da2ba5e54cba1346b32f36b89b Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Sat, 8 Feb 2014 10:05:10 -0600 Subject: [PATCH] Add a CONTRIBUTING.md --- CONTRIBUTING.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..3b62d30 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,15 @@ +# Pull Requests + +Pull requests should be made against the `working` branch. + +# Coding Guidelines + +In general, I follow strict pep8 and pyflakes. All code must pass these tests. Since we support python 2.4-3.4, pyflakes reports unknown names in python 3. pyflakes is run in python 2.7 only in my tests. + +# Supported Python Versions + +All code needs to support Python 2.4-3.4. + +# Testing + +Currently there are no unit tests, but they are planned.