Mercurial > processmanager
diff setup.py @ 0:3f775e3235fb
Origination, taken from http://www.humanized.com/ProcessManager/ProcessManager-0.0.4.tar.gz (just renamed README.txt to README).
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Tue, 18 Mar 2008 17:44:55 -0500 |
parents | |
children | 2be403181cd3 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Mar 18 17:44:55 2008 -0500 @@ -0,0 +1,16 @@ +from distutils.core import setup + +import ProcessManager + +setup( name = "ProcessManager", + version = ProcessManager.__version__, + author = "Atul Varma", + author_email = "atul@humanized.com", + url = "http://www.humanized.com/ProcessManager", + description = "A simple module for process management.", + download_url = ( "http://www.humanized.com/ProcessManager/" \ + "ProcessManager-%s.tar.gz" % \ + ProcessManager.__version__ ), + py_modules = ["ProcessManager"], + data_files = [ ("", ["README.txt"]) ] + )