[Checkins] SVN: z3c.extfile/trunk/setup. now really added egg support ; -)

Bernd Dorn bernd.dorn at fhv.at
Thu Aug 10 12:38:07 EDT 2006


Log message for revision 69393:
  now really added egg support ;-)

Changed:
  A   z3c.extfile/trunk/setup.cfg
  A   z3c.extfile/trunk/setup.py

-=-
Added: z3c.extfile/trunk/setup.cfg
===================================================================
--- z3c.extfile/trunk/setup.cfg	2006-08-10 16:34:10 UTC (rev 69392)
+++ z3c.extfile/trunk/setup.cfg	2006-08-10 16:38:02 UTC (rev 69393)
@@ -0,0 +1,3 @@
+[egg_info]
+tag_build = .dev
+tag_svn_revision = 1


Property changes on: z3c.extfile/trunk/setup.cfg
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.extfile/trunk/setup.py
===================================================================
--- z3c.extfile/trunk/setup.py	2006-08-10 16:34:10 UTC (rev 69392)
+++ z3c.extfile/trunk/setup.py	2006-08-10 16:38:02 UTC (rev 69393)
@@ -0,0 +1,26 @@
+from setuptools import setup, find_packages
+
+setup(
+    name = "z3c.extfile",
+    version = "0.1",
+    author = "Zope Contributors",
+    author_email = "zope3-dev at zope.org",
+    description = "Large file handling for zope3",
+    license = "ZPL 2.1",
+    keywords = "zope3 external file",
+    url='http://svn.zope.org/z3c.extfile',
+    classifiers = [
+        'Development Status :: 3 - Alpha',
+        "License :: OSI Approved :: Zope Public License",
+        "Framework :: Zope :: UI",
+        ],
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['z3c'],
+    zip_safe=False,
+    install_requires = [
+    # XXX no requirements so far
+    ],
+    #dependency_links = ['http://download.zope.org/distribution/'],
+    )


Property changes on: z3c.extfile/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Checkins mailing list