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
_______________________________________________
Distutils-SIG maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to