[z3-checkins] r25103 - in z3/sqlos/trunk: . releases src/sqlos

jinty at codespeak.net jinty at codespeak.net
Wed Mar 29 14:39:17 CEST 2006


Author: jinty
Date: Wed Mar 29 14:39:14 2006
New Revision: 25103

Added:
   z3/sqlos/trunk/setup.cfg
   z3/sqlos/trunk/setup.py   (contents, props changed)
Removed:
   z3/sqlos/trunk/releases/
   z3/sqlos/trunk/src/sqlos/DEPENDENCIES.cfg
Log:
Rip out the zpkg config and replace it with a setuptools one.

Added: z3/sqlos/trunk/setup.cfg
==============================================================================
--- (empty file)
+++ z3/sqlos/trunk/setup.cfg	Wed Mar 29 14:39:14 2006
@@ -0,0 +1,2 @@
+[egg-info]
+tag_svn_revision = 1

Added: z3/sqlos/trunk/setup.py
==============================================================================
--- (empty file)
+++ z3/sqlos/trunk/setup.py	Wed Mar 29 14:39:14 2006
@@ -0,0 +1,15 @@
+from setuptools import setup, find_packages
+
+setup(
+    name="sqlos",
+    description="an integration package for Zope3 and SQLObject",
+    version="0.1",
+    license="ZPL",
+    package_dir={'':'src'},
+    packages=find_packages('src'),
+    zip_safe=False,
+    include_package_data=True,
+    install_requires = [
+            'SQLObject>=0.7',
+            ] # XXX - what else? at least zope, let the users find out;)
+)

Deleted: /z3/sqlos/trunk/src/sqlos/DEPENDENCIES.cfg
==============================================================================
--- /z3/sqlos/trunk/src/sqlos/DEPENDENCIES.cfg	Wed Mar 29 14:39:14 2006
+++ (empty file)
@@ -1,2 +0,0 @@
-sqlobject
-zope.app


More information about the z3-checkins mailing list