[z3-checkins] r54948 - in z3/deliverance/sandbox/ianb/deliverance/trunk: . deliverance docs
ianb at codespeak.net
ianb at codespeak.net
Mon May 19 17:25:41 CEST 2008
Author: ianb
Date: Mon May 19 17:25:40 2008
New Revision: 54948
Added:
z3/deliverance/sandbox/ianb/deliverance/trunk/deliverance/
z3/deliverance/sandbox/ianb/deliverance/trunk/deliverance/__init__.py (contents, props changed)
z3/deliverance/sandbox/ianb/deliverance/trunk/docs/
z3/deliverance/sandbox/ianb/deliverance/trunk/docs/license.txt (contents, props changed)
z3/deliverance/sandbox/ianb/deliverance/trunk/setup.cfg
z3/deliverance/sandbox/ianb/deliverance/trunk/setup.py (contents, props changed)
Modified:
z3/deliverance/sandbox/ianb/deliverance/trunk/ (props changed)
Log:
basic layout plus some planning docs
Added: z3/deliverance/sandbox/ianb/deliverance/trunk/deliverance/__init__.py
==============================================================================
--- (empty file)
+++ z3/deliverance/sandbox/ianb/deliverance/trunk/deliverance/__init__.py Mon May 19 17:25:40 2008
@@ -0,0 +1 @@
+#
Added: z3/deliverance/sandbox/ianb/deliverance/trunk/docs/license.txt
==============================================================================
--- (empty file)
+++ z3/deliverance/sandbox/ianb/deliverance/trunk/docs/license.txt Mon May 19 17:25:40 2008
@@ -0,0 +1,20 @@
+Copyright (c) 2007
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Added: z3/deliverance/sandbox/ianb/deliverance/trunk/setup.cfg
==============================================================================
--- (empty file)
+++ z3/deliverance/sandbox/ianb/deliverance/trunk/setup.cfg Mon May 19 17:25:40 2008
@@ -0,0 +1,3 @@
+[egg_info]
+tag_build = dev
+tag_svn_revision = true
Added: z3/deliverance/sandbox/ianb/deliverance/trunk/setup.py
==============================================================================
--- (empty file)
+++ z3/deliverance/sandbox/ianb/deliverance/trunk/setup.py Mon May 19 17:25:40 2008
@@ -0,0 +1,26 @@
+from setuptools import setup, find_packages
+import sys, os
+
+version = '0.2'
+
+setup(name='deliverance',
+ version=version,
+ description="",
+ long_description="""\
+""",
+ classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
+ keywords='',
+ author='',
+ author_email='',
+ url='http://openplans.org/projects/deliverance/',
+ license='MIT',
+ packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
+ include_package_data=True,
+ zip_safe=False,
+ install_requires=[
+ "lxml",
+ ],
+ entry_points="""
+ # -*- Entry points: -*-
+ """,
+ )
More information about the z3-checkins
mailing list