summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--setup.py10
2 files changed, 11 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 05b8e0b..f579e6c 100644
--- a/Makefile
+++ b/Makefile
@@ -7,4 +7,4 @@ check:
awk '{ print } /^TOTAL/ && $$2 != $$3 {exit 1}'
clean:
- rm -rf *.pyc *.pyo dist
+ rm -rf *.pyc *.pyo dist MANIFEST
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..04d8ef4
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,10 @@
+from distutils.core import setup
+
+setup(name='genbackupdata',
+ version='1.0',
+ description='Generate test data for backup software',
+ author='Lars Wirzenius',
+ author_email='liw@iki.fi',
+ url='http://braawi.org/genbackupdata.html',
+ py_modules=['genbackupdata'],
+ ) \ No newline at end of file