From: Fredrik Tolf Date: Wed, 23 Nov 2011 02:49:34 +0000 (+0100) Subject: Added a distutils script. X-Git-Tag: 0.1~9 X-Git-Url: http://www.dolda2000.com/gitweb/?p=pdm.git;a=commitdiff_plain;h=1bb46303ee44603cdbdcba9146f20559126f2e0e Added a distutils script. --- diff --git a/.gitignore b/.gitignore index 0d20b64..57e683c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pyc +/build diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..5245a5c --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +#!/usr/bin/python + +from distutils.core import setup + +setup(name = "pdm", + version = "0.1", + description = "Python daemon management library", + author = "Fredrik Tolf", + author_email = "fredrik@dolda2000.com", + # url = "http://www.dolda2000.com/~fredrik/pdm/", + packages = ["pdm"], + scripts = ["pdm-repl"], + license = "GPL-3")