[Distutils] developing a package and two packages it depends on

Chris Withers chris at simplistix.co.uk
Wed Oct 15 15:05:07 CEST 2008


Hi All,

I have a package that has a setup.py containing the following:

setup(
     name='xlutils',
     ...
     install_requires=[
     'xlrd',
     'xlwt',
     ],
     )

I'm using buildout to setup and development and testing environment for 
this project so I have a buildout.cfg containing the following:

[buildout]
develop = .
parts = test py

[py]
recipe = zc.recipe.egg
eggs = xlutils
interpreter = py

[test]
recipe = zc.recipe.testrunner
eggs = xlutils

How can I get the above to use a checkout of xlrd and xlwt's trunk?

cheers,

Chris

-- 
Simplistix - Content Management, Zope & Python Consulting
            - http://www.simplistix.co.uk


More information about the Distutils-SIG mailing list