[CalendarServer-changes] [15737] CalDAVClientLibrary/trunk/setup.py

source_changes at macosforge.org source_changes at macosforge.org
Wed Jul 6 10:33:33 PDT 2016


Revision: 15737
          http://trac.calendarserver.org//changeset/15737
Author:   cdaboo at apple.com
Date:     2016-07-06 10:33:33 -0700 (Wed, 06 Jul 2016)
Log Message:
-----------
Use proper names for package.

Modified Paths:
--------------
    CalDAVClientLibrary/trunk/setup.py

Modified: CalDAVClientLibrary/trunk/setup.py
===================================================================
--- CalDAVClientLibrary/trunk/setup.py	2016-07-06 17:31:23 UTC (rev 15736)
+++ CalDAVClientLibrary/trunk/setup.py	2016-07-06 17:33:33 UTC (rev 15737)
@@ -13,6 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ##
+from os.path import dirname, join
 
 """
 Script for building the UI app (OS X only).
@@ -41,6 +42,63 @@
         packages.append(dirpath)
 
 plist = dict(NSMainNibFile="WebDAVBrowser")
+
+#
+# Options
+#
+
+name = "CalDAVClientLibrary"
+
+description = "CalDAV/CardDAV client tool"
+
+long_description = file(join(dirname(__file__), "README")).read()
+
+url = "http://trac.calendarserver.org/wiki/CalDAVClientLibrary"
+
+classifiers = [
+    "Development Status :: 4 - Beta",
+    "Intended Audience :: Developers",
+    "License :: OSI Approved :: Apache Software License",
+    "Operating System :: OS Independent",
+    "Programming Language :: Python :: 2.7",
+    "Programming Language :: Python :: 2 :: Only",
+    "Topic :: Software Development :: Testing",
+]
+
+author = "Apple Inc."
+
+author_email = "calendarserver-dev at lists.macosforge.org"
+
+license = "Apache License, Version 2.0"
+
+platforms = ["all"]
+
+
+#
+# Dependencies
+#
+
+setup_requirements = []
+
+install_requirements = []
+
+extras_requirements = {}
+
+
+#
+# Set up Extension modules that need to be built
+#
+
+# from distutils.core import Extension
+
+extensions = []
+
+
+
+#
+# Run setup
+#
+
 setup(
     app=["caldavclientlibrary/ui/WebDAVBrowser.py"],
     packages=packages,
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20160706/88e816fd/attachment.html>


More information about the calendarserver-changes mailing list