[Checkins] SVN: lovely.tag/trunk/ added z3c.sampledata as egg

Jodok Batlogg jodok.batlogg at lovelysystems.com
Thu Mar 22 11:17:25 EDT 2007


Log message for revision 73452:
  added z3c.sampledata as egg

Changed:
  _U  lovely.tag/trunk/
  U   lovely.tag/trunk/buildout.cfg
  U   lovely.tag/trunk/setup.py

-=-

Property changes on: lovely.tag/trunk
___________________________________________________________________
Name: svn:externals
   - z3c.sampledata svn://svn.zope.org/repos/main/z3c.sampledata/trunk

   + 


Modified: lovely.tag/trunk/buildout.cfg
===================================================================
--- lovely.tag/trunk/buildout.cfg	2007-03-22 15:05:38 UTC (rev 73451)
+++ lovely.tag/trunk/buildout.cfg	2007-03-22 15:17:24 UTC (rev 73452)
@@ -1,5 +1,5 @@
 [buildout]
-develop = . z3c.sampledata
+develop = .
 parts = test
 
 find-links = http://download.zope.org/distribution/

Modified: lovely.tag/trunk/setup.py
===================================================================
--- lovely.tag/trunk/setup.py	2007-03-22 15:05:38 UTC (rev 73451)
+++ lovely.tag/trunk/setup.py	2007-03-22 15:17:24 UTC (rev 73452)
@@ -1,28 +1,30 @@
 #!python
 from setuptools import setup, find_packages
 
-setup(name='lovely.tag',
-      version='0.2',
-      author = "Stephan Richter, Jodok Batlogg",
-      author_email = "srichter at cosmos.phy.tufts.edu, jodok.batlogg at lovelysystems.com",
-      description = "A tagging engine for zope 3",
-      license = "ZPL 2.1",
-      keywords = "zope3 web20 zope tagging",
-      url='svn://svn.zope.org/repos/main/lovely.tag',
+setup (
+    name='lovely.tag',
+    version='0.2',
+    author = "Lovely Systems",
+    author_email = "office at lovelysystems.com",
+    description = "A tagging engine for zope 3",
+    license = "ZPL 2.1",
+    keywords = "zope3 web20 zope tagging",
+    url = 'svn://svn.zope.org/repos/main/lovely.tag',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['lovely'],
+    extras_require = dict(
+        test = ['z3c.sampledata']
+        ),
+    install_requires = [
+        'setuptools',
+        'zope.interface',
+        'zope.component',
+        'ZODB3',
+        'zope.app.container',
+        'zope.i18nmessageid',
+        ],
+    dependency_links = ['http://download.zope.org/distribution']
+    )
 
-      packages=find_packages('src'),
-      include_package_data=True,
-      package_dir = {'':'src'},
-      namespace_packages=['lovely'],
-      extras_require = dict(
-            test=['z3c.sampledata']
-            ),
-      install_requires = ['setuptools',
-                          'zope.interface',
-                          'zope.component',
-                          'ZODB3',
-                          'zope.app.container',
-                          'zope.i18nmessageid'],
-      dependency_links=['http://download.zope.org/distribution']
-     )
-



More information about the Checkins mailing list