Changeset 1115

Show
Ignore:
Timestamp:
06/20/08 17:04:28
Author:
seang
Message:

Rename encoding module to codec (no API change), and prep for 1.0b1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • geojson/trunk/CHANGES.txt

    r1085 r1115  
    22======= 
    33 
    4 1.0a4 (Sun Apr 27 2008
     41.0b1 (2008-MM-DD
    55------------------ 
     6- Rename encoding module to codec. 
    67 
     81.0a4 (2008-04-27) 
     9------------------ 
    710- Get in step with GeoJSON draft version 6. 
    8  
    911- Made all code work with Python 2.4.3, 2.5.1, will test with all variations. 
    1012  (see tests/rundoctests.dist) 
    11  
    1213- Made tests use ELLIPSIS to avoid output transmogification due to floating 
    1314  point representation.  
    14    
  • geojson/trunk/CREDITS.txt

    r935 r1115  
    11Sean Gillies <sgillies@frii.com> 
    22Matthew Russell 
    3  
  • geojson/trunk/DEPENDENCIES.txt

    r655 r1115  
    11simplejson 
    2  
  • geojson/trunk/geojson/__init__.py

    r1063 r1115  
    1 from encoding import dump, dumps, load, loads 
     1from codec import dump, dumps, load, loads 
    22from geometry import Point, LineString, Polygon 
    33from geometry import MultiLineString, MultiPoint, MultiPolygon 
  • geojson/trunk/README.txt

    r1062 r1115  
    1 GeoJSON: encode/decode geodata 
     1geojson: encode/decode geodata 
    22============================== 
    33 
    44This package contains: 
    55 
    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: 
    107 
    118  http://trac.gispython.org/projects/PCL/wiki/PythonGeoInterface 
    129 
     10* Functions for encoding and decoding GeoJSON (http://geojson.org) formatted 
     11  data. 
  • geojson/trunk/setup.py

    r1084 r1115  
    1  
    21from setuptools import setup 
    32 
     
    54version = open("VERSION.txt", "rb").read() 
    65 
    7 setup(name          = "GeoJSON", 
     6setup(name          = "geojson", 
    87      version       = version, 
    98      description   = "Encoder/decoder for simple GIS features", 
     
    2019      test_suite    = "tests.test_suite", 
    2120      classifiers   = [ 
    22         "Development Status :: 3 - Alpha", 
     21        "Development Status :: 4 - Beta", 
    2322        "Intended Audience :: Developers", 
    2423        "Intended Audience :: Science/Research", 
     
    2928        ], 
    3029) 
    31  
  • geojson/trunk/VERSION.txt

    r1084 r1115  
    1 1.0a4 
     11.0b1