summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authoreroen2013-11-14 15:20:10 +0100
committereroen2013-11-14 15:20:10 +0100
commit0369083a5b26a30ab7a04df3173ab8244c824b11 (patch)
tree696d68c8ca533bd23d082ff283e92eb1733b43b6 /setup.py
parenta217a82444aed528a2760521056b467cf8215650 (diff)
downloadgit-annex-wrapper-0369083a5b26a30ab7a04df3173ab8244c824b11.tar.gz
git-annex-wrapper-0369083a5b26a30ab7a04df3173ab8244c824b11.tar.bz2
git-annex-wrapper-0369083a5b26a30ab7a04df3173ab8244c824b11.tar.xz
packaging
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..ff1aa07
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+from distutils.core import setup
+import ga_wrapper
+
+setup(
+ name='ga_wrapper',
+ version=ga_wrapper.__version__,
+ license=ga_wrapper.__license__,
+ description='wrapper for using git-annex for distfiles with portage',
+ url='https://eroen.eu',
+ author=ga_wrapper.__author__,
+ author_email='eroen@eroen.eu',
+ packages=['ga_wrapper'],
+ scripts=['bin/git-annex-wrapper']
+ )