Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2012-04-03 10:25:11 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2012-04-03 10:25:11 (GMT)
commita1348e94a60317411a2a507505867a2b050153f2 (patch)
treed606cd5e318e05b2b5592a66e7b65d10cb5a4ef4
parent2c3f4ddb36c4ca55367a0b791b5eb4e8d0017f6c (diff)
add setup.py
Add a standard interface for easy installation of journal2webdav.
-rwxr-xr-xjournal2webdav (renamed from journal2webdav.py)0
-rwxr-xr-xsetup.py31
2 files changed, 31 insertions, 0 deletions
diff --git a/journal2webdav.py b/journal2webdav
index 8529664..8529664 100755
--- a/journal2webdav.py
+++ b/journal2webdav
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..89d5de6
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+#
+# Author: Sascha Silbe <sascha-pgp@silbe.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3
+# as published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+"""
+Installer for Journal2WebDAV
+"""
+
+from distutils.core import setup
+
+
+setup(name='Journal2WebDAV',
+ version='0.1',
+ url='https://git.sugarlabs.org/journal2webdav',
+ description='Publish Sugar data store / Journal content via WebDAV',
+ author='Sascha Silbe',
+ author_email='sascha-pgp@silbe.org',
+ license='GPLv3',
+ scripts=['journal2webdav'],
+ )