[Checkins] SVN: zope.bugchecker/trunk/s Move setup files into root of project.

Tres Seaver tseaver at palladion.com
Wed Apr 14 12:29:50 EDT 2010


Log message for revision 110903:
  Move setup files into root of project.

Changed:
  A   zope.bugchecker/trunk/setup.cfg
  A   zope.bugchecker/trunk/setup.py
  D   zope.bugchecker/trunk/src/setup.cfg
  D   zope.bugchecker/trunk/src/setup.py

-=-
Copied: zope.bugchecker/trunk/setup.cfg (from rev 110809, zope.bugchecker/trunk/src/setup.cfg)
===================================================================
--- zope.bugchecker/trunk/setup.cfg	                        (rev 0)
+++ zope.bugchecker/trunk/setup.cfg	2010-04-14 16:29:50 UTC (rev 110903)
@@ -0,0 +1,3 @@
+[egg_info]
+tag_build = dev
+tag_svn_revision = true

Copied: zope.bugchecker/trunk/setup.py (from rev 110809, zope.bugchecker/trunk/src/setup.py)
===================================================================
--- zope.bugchecker/trunk/setup.py	                        (rev 0)
+++ zope.bugchecker/trunk/setup.py	2010-04-14 16:29:50 UTC (rev 110903)
@@ -0,0 +1,25 @@
+from setuptools import setup, find_packages
+import sys, os
+
+version = '0.1'
+
+setup(name='zope.bugtracker',
+      version=version,
+      description="Check the Zope bugtracker for new bugs",
+      long_description="""\
+""",
+      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      keywords='',
+      author='Charlie Clark',
+      author_email='',
+      url='',
+      license='ZPL',
+      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=['launchpadlib'
+      ],
+      entry_points="""
+      # -*- Entry points: -*-
+      """,
+      )

Deleted: zope.bugchecker/trunk/src/setup.cfg
===================================================================
--- zope.bugchecker/trunk/src/setup.cfg	2010-04-14 16:00:05 UTC (rev 110902)
+++ zope.bugchecker/trunk/src/setup.cfg	2010-04-14 16:29:50 UTC (rev 110903)
@@ -1,3 +0,0 @@
-[egg_info]
-tag_build = dev
-tag_svn_revision = true

Deleted: zope.bugchecker/trunk/src/setup.py
===================================================================
--- zope.bugchecker/trunk/src/setup.py	2010-04-14 16:00:05 UTC (rev 110902)
+++ zope.bugchecker/trunk/src/setup.py	2010-04-14 16:29:50 UTC (rev 110903)
@@ -1,25 +0,0 @@
-from setuptools import setup, find_packages
-import sys, os
-
-version = '0.1'
-
-setup(name='zope.bugtracker',
-      version=version,
-      description="Check the Zope bugtracker for new bugs",
-      long_description="""\
-""",
-      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      keywords='',
-      author='Charlie Clark',
-      author_email='',
-      url='',
-      license='ZPL',
-      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=['launchpadlib'
-      ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
-      )



More information about the checkins mailing list