David S. wrote: > I have a what I a typical source tree, something like: > fsi\ > - common\ # some modules > - db\ # some modules > - someutility\ # my script > > I would like to create a setup script to install my script as a script as well > as the modules that is depends on, but where should the setup.py file live? > If > I put it in ./someutility/ it can not find fsi.common or fsi.db.
David Your setup.py should live in fsi/setup.py. try: --- from distutils.core import setup setup( packages=['common', 'db'], scripts=['someutility/script1.py', 'someutility/script2.py']) --- dsc -- http://mail.python.org/mailman/listinfo/python-list