Title: [commits] (bear) [11368] Adding setup.py - used by the Chandler localization egg to install locale resource data into the release (or debug) directory
Revision
11368
Author
bear
Date
2006-08-09 22:14:24 -0700 (Wed, 09 Aug 2006)

Log Message

Adding setup.py - used by the Chandler localization egg to install locale resource data into the release (or debug) directory
bug 6434

Added Paths

Diff

Added: trunk/chandler/setup.py (11367 => 11368)

--- trunk/chandler/setup.py	2006-08-10 05:11:07 UTC (rev 11367)
+++ trunk/chandler/setup.py	2006-08-10 05:14:24 UTC (rev 11368)
@@ -0,0 +1,29 @@
+#!/bin/env python
+# -*- coding: utf-8 -*-
+
+#   Copyright (c) 2006 Open Source Applications Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+from setuptools import setup
+
+setup(
+    name         = "Chandler",
+    version      = "0.1",
+    author       = "Brian Kirsch",
+    author_email = "[EMAIL PROTECTED]",
+    description  = "Default resource and localization egg for Chandler",
+    license      = "Apache License, Version 2.0",
+    include_package_data = True,
+    zip_safe             = True,
+)
Property changes on: trunk/chandler/setup.py
___________________________________________________________________
Name: svn:executable
   + *




_______________________________________________
Commits mailing list
[email protected]
http://lists.osafoundation.org/mailman/listinfo/commits

Reply via email to