From: Fredrik Tolf Date: Sun, 12 May 2013 03:43:35 +0000 (+0200) Subject: Added a distutils script. X-Git-Url: http://dolda2000.com/gitweb/?p=automanga.git;a=commitdiff_plain;h=a803365ba47dd030f121be0ca48342c4e79efcf5 Added a distutils script. --- diff --git a/.gitignore b/.gitignore index 2f836aa..94d4066 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -*~ +/build *.pyc diff --git a/setup.py b/setup.py new file mode 100755 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"])