Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #33822

Re: Managing multiple packages

Date 2012-11-23 01:22 +0100
From Thomas Bach <thbach@students.uni-mainz.de>
Subject Re: Managing multiple packages
References <50ABF52B.1080101@wisc.edu>
Newsgroups comp.lang.python
Message-ID <mailman.218.1353630208.29569.python-list@python.org> (permalink)

Show all headers | View raw


On Tue, Nov 20, 2012 at 03:24:59PM -0600, Evan Driscoll wrote:
> 
> Suppose I have packages A-C. In addition to being modules in the Python
> sense, they are logically distinct, probably sit in different
> repositories, etc., so there's a directory layout like
> 
> [SNIP]
>
> Finally, suppose that you're changing between editing all three modules.
> 
> 
> How do you deal with this?

I am using virtual environments and do a

python setup.py develop

on each package. This just creates a symbolic link to the package and
all edits show up immediately.

I have not come up with a good solution for tox, yet.

Hope this helps,

     Thomas.

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Managing multiple packages Thomas Bach <thbach@students.uni-mainz.de> - 2012-11-23 01:22 +0100

csiph-web