From 28b1e575f4f7472dbbc18d9fcc3e2f4f0bc89f70 Mon Sep 17 00:00:00 2001 From: chipx86 Date: Fri, 27 Mar 2009 08:43:26 +0000 Subject: Move post-review into a new top-level "rbtools" package Since the dawn of time, post-review has lived in the Review Board tree, despite being a client script and not necessarily being needed on the server. This moves post-review into a new rbtools package, which users will be able to easy_install (easy_install -U RBTools). The simplejson dependency will be fetched, and users won't have to go hunting in SVN for a script. Over time, I'd like to add new scripts into here (such as one to apply a diff from a review request), and further down the road I'd like to create an "rbapi" (or something) package that contains a Python API for talking to a Review Board server, which rbtools (and post-review) will then use. For now, the goal is to just get post-review moved over. Reviewed at http://reviews.review-board.org/r/788/ git-svn-id: https://reviewboard.googlecode.com/svn/trunk/rbtools@1861 5efc13c4-1f27-0410-8691-ff2d1f55687e --- setup.cfg | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.cfg (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..160e26c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,14 @@ +[egg_info] +tag_build = .dev +tag_svn_revision = 1 + +[aliases] +snapshot = egg_info -Dr +nightly = egg_info -dR +alpha2 = egg_info -DRb alpha2 +alpha1 = egg_info -DRb alpha1 +beta2 = egg_info -DRb beta2 +beta1 = egg_info -DRb beta1 +rc1 = egg_info -DRb rc1 +rc2 = egg_info -DRb rc2 +release = egg_info -DRb '' -- cgit v1.2.3