From a803365ba47dd030f121be0ca48342c4e79efcf5 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Sun, 12 May 2013 05:43:35 +0200 Subject: [PATCH] Added a distutils script. --- .gitignore | 2 +- setup.py | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 setup.py 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"]) -- 2.11.0