Changeset 1548

Show
Ignore:
Timestamp:
02/09/10 04:52:29 (6 months ago)
Author:
seang
Message:

Add manifest. New examples now in sdist.

Location:
Shapely/branches/1.2
Files:
1 added
1 removed
2 modified

Legend:

Unmodified
Added
Removed
  • Shapely/branches/1.2/CHANGES.txt

    r1229 r1548  
    11All tickets are children of http://trac.gispython.org/lab/ticket. 
     2 
     31.2a6 (2010-02-09) 
     4------------------ 
     5- Add accessor for separate arrays of X and Y values (#210). 
     6 
     7TODO: fill gap here 
     8 
     91.2a1 (2010-01-20) 
     10------------------ 
     11- Proper prototyping of WKB writer, and avoidance of errors on 64-bit systems 
     12  (#191). 
     13- Prototype libgeos_c functions in a way that lets py2exe apps import shapely 
     14  (#189). 
     15 
     16========================= 
     171.2 Branched (2009-09-19) 
     18========================= 
    219 
    3201.0.12 (2009-04-09) 
     
    5673------------------ 
    5774- Fix loss of dimensionality in polygon rings (#155). 
     75 
     761.0.1 (2008-02-08) 
     77------------------ 
     78- Allow chaining expressions involving coordinate sequences and geometry parts 
     79  (#151). 
     80- Protect against abnormal use of coordinate accessors (#152). 
     81- Coordinate sequences now implement the numpy array protocol (#153). 
     82 
     831.0 (2008-01-18) 
     84---------------- 
     85- Final release. 
     86 
     871.0 RC2 (2008-01-16) 
     88-------------------- 
     89- Added temporary solution for #149. 
     90 
     911.0 RC1 (2008-01-14) 
     92-------------------- 
     93- First release candidate 
     94 
  • Shapely/branches/1.2/setup.py

    r1536 r1548  
    77    warnings.warn("Failed to import distribute_setup", ImportWarning) 
    88 
    9 from setuptools import setup, Extension 
     9from setuptools import setup, find_packages 
    1010import sys 
    1111 
     
    3131    long_description = readme_text, 
    3232    packages      = ['shapely', 'shapely.geometry'], 
     33    scripts       = ['examples/dissolve.py', 'examples/intersect.py'], 
     34    # include_package_data=True, 
    3335    install_requires = install_requires, 
    3436    test_suite = 'shapely.tests.test_suite',