Changeset 1115
- Timestamp:
- 06/20/08 17:04:28
- Files:
-
- geojson/trunk/CHANGES.txt (modified) (1 diff)
- geojson/trunk/CREDITS.txt (modified) (1 diff)
- geojson/trunk/DEPENDENCIES.txt (modified) (1 diff)
- geojson/trunk/geojson/codec.py (moved) (moved from geojson/trunk/geojson/encoding.py)
- geojson/trunk/geojson/__init__.py (modified) (1 diff)
- geojson/trunk/README.txt (modified) (1 diff)
- geojson/trunk/setup.py (modified) (4 diffs)
- geojson/trunk/VERSION.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
geojson/trunk/CHANGES.txt
r1085 r1115 2 2 ======= 3 3 4 1.0 a4 (Sun Apr 27 2008)4 1.0b1 (2008-MM-DD) 5 5 ------------------ 6 - Rename encoding module to codec. 6 7 8 1.0a4 (2008-04-27) 9 ------------------ 7 10 - Get in step with GeoJSON draft version 6. 8 9 11 - Made all code work with Python 2.4.3, 2.5.1, will test with all variations. 10 12 (see tests/rundoctests.dist) 11 12 13 - Made tests use ELLIPSIS to avoid output transmogification due to floating 13 14 point representation. 14 geojson/trunk/CREDITS.txt
r935 r1115 1 1 Sean Gillies <sgillies@frii.com> 2 2 Matthew Russell 3 geojson/trunk/DEPENDENCIES.txt
r655 r1115 1 1 simplejson 2 geojson/trunk/geojson/__init__.py
r1063 r1115 1 from encodingimport dump, dumps, load, loads1 from codec import dump, dumps, load, loads 2 2 from geometry import Point, LineString, Polygon 3 3 from geometry import MultiLineString, MultiPoint, MultiPolygon geojson/trunk/README.txt
r1062 r1115 1 GeoJSON: encode/decode geodata1 geojson: encode/decode geodata 2 2 ============================== 3 3 4 4 This package contains: 5 5 6 * simplejson-based classes and functions for encoding and decoding geojson.org 7 JSON. 8 9 * A working example of a class that provides the Python geo interface. 6 * The reference implementation of the Python geo interface: 10 7 11 8 http://trac.gispython.org/projects/PCL/wiki/PythonGeoInterface 12 9 10 * Functions for encoding and decoding GeoJSON (http://geojson.org) formatted 11 data. geojson/trunk/setup.py
r1084 r1115 1 2 1 from setuptools import setup 3 2 … … 5 4 version = open("VERSION.txt", "rb").read() 6 5 7 setup(name = " GeoJSON",6 setup(name = "geojson", 8 7 version = version, 9 8 description = "Encoder/decoder for simple GIS features", … … 20 19 test_suite = "tests.test_suite", 21 20 classifiers = [ 22 "Development Status :: 3 - Alpha",21 "Development Status :: 4 - Beta", 23 22 "Intended Audience :: Developers", 24 23 "Intended Audience :: Science/Research", … … 29 28 ], 30 29 ) 31 geojson/trunk/VERSION.txt
r1084 r1115 1 1.0 a41 1.0b1
