comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:3f775e3235fb
1 from distutils.core import setup
2
3 import ProcessManager
4
5 setup( name = "ProcessManager",
6 version = ProcessManager.__version__,
7 author = "Atul Varma",
8 author_email = "atul@humanized.com",
9 url = "http://www.humanized.com/ProcessManager",
10 description = "A simple module for process management.",
11 download_url = ( "http://www.humanized.com/ProcessManager/" \
12 "ProcessManager-%s.tar.gz" % \
13 ProcessManager.__version__ ),
14 py_modules = ["ProcessManager"],
15 data_files = [ ("", ["README.txt"]) ]
16 )