Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 82427 invoked from network); 7 Nov 2010 09:37:48 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 7 Nov 2010 09:37:48 -0000 Received: (qmail 54762 invoked by uid 500); 7 Nov 2010 09:38:19 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 54677 invoked by uid 500); 7 Nov 2010 09:38:19 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 54670 invoked by uid 99); 7 Nov 2010 09:38:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Nov 2010 09:38:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Nov 2010 09:38:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C905C238896F; Sun, 7 Nov 2010 09:37:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1032240 - /commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/setup.py Date: Sun, 07 Nov 2010 09:37:05 -0000 To: commits@commons.apache.org From: jbeard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101107093705.C905C238896F@eris.apache.org> Author: jbeard Date: Sun Nov 7 09:37:05 2010 New Revision: 1032240 URL: http://svn.apache.org/viewvc?rev=1032240&view=rev Log: Added setup.py to allow creation of python eggs. Added: commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/setup.py (with props) Added: commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/setup.py URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/setup.py?rev=1032240&view=auto ============================================================================== --- commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/setup.py (added) +++ commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/setup.py Sun Nov 7 09:37:05 2010 @@ -0,0 +1,7 @@ +from setuptools import setup, find_packages + +setup( + name = "scxml-js", + version = "0.1a", + packages = find_packages(), +) Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/setup.py ------------------------------------------------------------------------------ svn:eol-style = native