Added a distutils script.
authorFredrik Tolf <fredrik@dolda2000.com>
Sun, 12 May 2013 03:43:35 +0000 (05:43 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Sun, 12 May 2013 03:43:43 +0000 (05:43 +0200)
.gitignore
setup.py [new file with mode: 0755]

index 2f836aa..94d4066 100644 (file)
@@ -1,2 +1,2 @@
-*~
+/build
 *.pyc
diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..d2d2532
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,9 @@
+#!/usr/bin/python
+
+from distutils.core import setup
+
+setup(name = "automanga",
+      version = "1",
+      description = "Automanga",
+      packages = ["manga"],
+      scripts = ["automanga"])