Dolda2000 GitWeb
/
didex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbf73d3
)
Added setup script.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Fri, 20 Mar 2015 05:16:09 +0000
(06:16 +0100)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Fri, 20 Mar 2015 05:16:09 +0000
(06:16 +0100)
setup.py
[new file with mode: 0755]
patch
|
blob
diff --git a/setup.py
b/setup.py
new file mode 100755
(executable)
index 0000000..
02d0a32
--- /dev/null
+++ b/
setup.py
@@ -0,0
+1,11
@@
+#!/usr/bin/python3
+
+from distutils.core import setup, Extension
+
+setup(name = "didex",
+ version = "0.1",
+ description = "Indexing object store",
+ author = "Fredrik Tolf",
+ author_email = "fredrik@dolda2000.com",
+ packages = ["didex"],
+ license = "GPL-3")