summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2009-03-08 12:50:03 +1100
committerRobert Collins <robertc@robertcollins.net>2009-03-08 12:50:03 +1100
commit86ce5aa1f3b33f73cd73f4628e5b854c3d9a7978 (patch)
treecd5690b22046ea178cd78f6f0df29be5f44d3295
parent7382c48a9bfeecd5a0b30cc4a77e2b0ade138c48 (diff)
downloadtestscenarios-git-86ce5aa1f3b33f73cd73f4628e5b854c3d9a7978.tar.gz
Add a HACKING file.
-rw-r--r--HACKING29
1 files changed, 29 insertions, 0 deletions
diff --git a/HACKING b/HACKING
new file mode 100644
index 0000000..fb1a1bf
--- /dev/null
+++ b/HACKING
@@ -0,0 +1,29 @@
+Contributing to testscenarios
+=============================
+
+Code access
++++++++++++
+
+Branch from the trunk (all patches should be for trunk unless there are
+exceptional circumstances)::
+
+ bzr branch lp:testscenarios path-to-new-local-branch
+
+Publish your branches whereever you like, I encourage launchpad hosting though,
+as it can notify me of new testscenarios branches::
+
+ bzr push lp:~YOURUSERNAME/testscearios/YOURBRANCHNAME
+
+Copyright
++++++++++
+
+Testscenarios is Copyright (C) 2009 Robert Collins. I'd like to be able to
+offer it up for stdlib inclusion once it has proved itself, so am asking for
+copyright assignment to me - or for your contributions to be under some GPL
+licence that is also compatible with the Python code contribution requirements.
+
+Coding standards
+++++++++++++++++
+
+PEP-8 coding style please, though I'm not nitpicky. Make sure that 'make check'
+passes before sending in a patch.