================== GeoJSON - Buildout ================== This is a buildout system for GeoJSON. It is based on zc.buildout. Installation ------------ $ svn co http://svn.gispython.org/svn/gispy/buildout/geojson.buildout/trunk geojson.buildout $ python bootstrap.py $ ./bin/buildout Testing ------- The test suite is run by:: $ ./bin/test Developing ---------- The GeoJSON code is under ``src/GeoJSON``. It is installed as a development egg so any changes made to the source code are immediately available for use. There is a python interpreter available under:: $ ./bin/python that has GeoJSON available for importing and use. If you're using multiple zc.buildout based buildouts for your development, you may wish to share the downloaded eggs and tarballs among them to save disk space. To do this create a file:: ~/.buildout/default.cfg and put the following there:: [buildout] eggs = /path/to/shared/egg/container download-directory = /path/to/shared/package/container