[Zope3-checkins] SVN: zdaemon/trunk/setup.py - zpl
Jim Fulton
jim at zope.com
Tue Nov 21 12:59:04 EST 2006
Log message for revision 71246:
- zpl
- include package data
- missing import
Changed:
U zdaemon/trunk/setup.py
-=-
Modified: zdaemon/trunk/setup.py
===================================================================
--- zdaemon/trunk/setup.py 2006-11-21 17:47:12 UTC (rev 71245)
+++ zdaemon/trunk/setup.py 2006-11-21 17:59:03 UTC (rev 71246)
@@ -1,3 +1,19 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
+import os
+
entry_points = """
[console_scripts]
zdctl = zdaemon.zdctl:main
@@ -12,6 +28,7 @@
setuptools_options = dict(
zip_safe=False,
entry_points=entry_points,
+ include_package_data = True,
)
except ImportError:
from distutils.core import setup
@@ -20,7 +37,7 @@
name = "zdaemon"
setup(
name=name,
- version="1.4a1",
+ version="1.4a2",
url="http://www.python.org/pypi/zdaemon",
license="ZPL 2.1",
description="Daemon process control library and tools",
More information about the Zope3-Checkins
mailing list