Include documentation folder, README.
[pithos] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..8c18cba
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+
+#from distutils.core import setup
+from setuptools import setup
+
+from pithos import __version__ as version
+
+setup(
+    name='Pithos',
+    version=version,
+    description='Pithos file storage service',
+    author='GRNET',
+    author_email='pithos@grnet.gr',
+    url='http://code.grnet.gr/projects/pithos',
+    packages=['pithos'],
+)