You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/12/05 23:48:35 UTC

svn commit: r354211 - in /gump/branches/Gump3/pygump/python: ./ setup.py

Author: leosimons
Date: Mon Dec  5 14:48:31 2005
New Revision: 354211

URL: http://svn.apache.org/viewcvs?rev=354211&view=rev
Log:
Make it easy to have the gump codebase as an installed package.

Added:
    gump/branches/Gump3/pygump/python/setup.py   (with props)
Modified:
    gump/branches/Gump3/pygump/python/   (props changed)

Propchange: gump/branches/Gump3/pygump/python/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Dec  5 14:48:31 2005
@@ -4,3 +4,6 @@
 test
 bogus
 wingdbstub.*
+build
+dist
+

Added: gump/branches/Gump3/pygump/python/setup.py
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/pygump/python/setup.py?rev=354211&view=auto
==============================================================================
--- gump/branches/Gump3/pygump/python/setup.py (added)
+++ gump/branches/Gump3/pygump/python/setup.py Mon Dec  5 14:48:31 2005
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+#
+# Copyright (c) 2005 Leo Simons. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may not
+# use this file except in compliance with the License. You may obtain a copy of
+# the License at
+#
+#     http://www.jicarilla.nl/licensing/
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations under
+# the License.
+#
+from distutils.core import setup
+
+setup(name='gump',
+      version='3.0-alpha-5',
+      description='Apache Gump Core',
+      author='The Apache Gump Team',
+      author_email='general@gump.apache.org',
+      url='http://gump.apache.org/',
+      packages=['gump',
+                'gump.model',
+                'gump.plugins',
+                'gump.plugins.java',
+                'gump/util']
+     )
+

Propchange: gump/branches/Gump3/pygump/python/setup.py
------------------------------------------------------------------------------
    svn:eol-style = native