summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-10-13 09:36:26 +0100
committerLars Wirzenius <liw@liw.fi>2012-10-13 09:36:26 +0100
commit11ace0c56c14e3073dbd3b73085fc590276a7d42 (patch)
tree97f8bcc1ece54d921896c79c1f5eda77e91e4d17
downloadcachedir-11ace0c56c14e3073dbd3b73085fc590276a7d42.tar.gz
Add dummy version
-rwxr-xr-xcachedir29
1 files changed, 29 insertions, 0 deletions
diff --git a/cachedir b/cachedir
new file mode 100755
index 0000000..e534cac
--- /dev/null
+++ b/cachedir
@@ -0,0 +1,29 @@
+#!/usr/bin/python
+# Copyright 2012 Lars Wirzenius
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# 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/>.
+
+
+import cliapp
+
+
+__version__ = '0.0'
+
+
+class Cachedir(cliapp.Application):
+
+ pass
+
+
+Cachedir(version=__version__).run()