# Notes
# 'bin/buildout -vvn' will be more verbose and N for buildout
# will not seek new distributions if installed distributions
# satisfy it's requirements.
#
# Buildout configruation for basic use of python-opstools
#
[buildout]
extensions = mr.developer
versions = versions
newest = true
show-picked-versions = true
sources = sources
always-checkout = force
auto-checkout = *
parts =
python
scripts
test
# Define any test/develop directories that contain setup.py for rapid testing (space separated)
# This allows you do test a multitude of versions without dirtying the buidout env.
#develop = /home/mtdeguzis/pyknoxtool
# Specify any root indexes
# Use 'find-links' for additional sources
index =
# Specify additional source links
# It may be best to use all git sources, as pypi devs will archive older versions often
# Format: <LINK>#egg=<module>-<version>
#find-links =
# Define any external rev. control sources we want to use
# Requires Mr. Devleoper
###############################
# buildout on windows has issues with checking out sources
# For now, use a locally cloned copy of python-opstools
# See above
###############################
[sources]
[versions]
# You may need to pin setuptools here to the latest version that works cleanly
# This should be periodically reviewed
#setuptools = 36.0.1
#requests = 2.6.0
[python]
recipe = zc.recipe.egg
interpreter = python
dependent-scripts = true
eggs =
myproj