Changeset 1062
- Timestamp:
- 03/28/08 08:47:19
- Files:
-
- GeoJSON/trunk/README.txt (modified) (1 diff)
- GeoJSON/trunk/setup.py (modified) (1 diff)
- GeoJSON/trunk/tests/__init__.py (modified) (1 diff)
- GeoJSON/trunk/tests/test_doctests.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
GeoJSON/trunk/README.txt
r886 r1062 7 7 JSON. 8 8 9 * A working example of a class that satisfies the Python geo interface.9 * A working example of a class that provides the Python geo interface. 10 10 11 http://trac.gispython.org/projects/PCL/wiki/PythonGeoInterface 12 GeoJSON/trunk/setup.py
r935 r1062 18 18 packages = ['geojson'], 19 19 install_requires = ['simplejson', 'setuptools'], 20 test_suite = 'tests.test_suite', 20 21 classifiers = [ 21 22 'Development Status :: 3 - Alpha', GeoJSON/trunk/tests/__init__.py
r935 r1062 1 1 # package 2 from test_doctests import test_suite GeoJSON/trunk/tests/test_doctests.py
r935 r1062 10 10 import os 11 11 12 from zope.testingimport doctest12 import doctest 13 13 14 14 optionflags = (doctest.REPORT_ONLY_FIRST_FAILURE |
