]> www.dolda2000.com Git - automanga.git/commitdiff
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 2f836aacf266b3e7fc17ec2d8a99aa68c904c1b9..94d4066b8cc900deb0359a5c95bcaa10219bf10b 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"])