Changeset 1548
- Timestamp:
- 02/09/10 04:52:29 (6 months ago)
- Location:
- Shapely/branches/1.2
- Files:
-
- 1 added
- 1 removed
- 2 modified
-
CHANGES.txt (modified) (2 diffs)
-
HISTORY.txt (deleted)
-
MANIFEST.in (added)
-
setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Shapely/branches/1.2/CHANGES.txt
r1229 r1548 1 1 All tickets are children of http://trac.gispython.org/lab/ticket. 2 3 1.2a6 (2010-02-09) 4 ------------------ 5 - Add accessor for separate arrays of X and Y values (#210). 6 7 TODO: fill gap here 8 9 1.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 ========================= 17 1.2 Branched (2009-09-19) 18 ========================= 2 19 3 20 1.0.12 (2009-04-09) … … 56 73 ------------------ 57 74 - Fix loss of dimensionality in polygon rings (#155). 75 76 1.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 83 1.0 (2008-01-18) 84 ---------------- 85 - Final release. 86 87 1.0 RC2 (2008-01-16) 88 -------------------- 89 - Added temporary solution for #149. 90 91 1.0 RC1 (2008-01-14) 92 -------------------- 93 - First release candidate 94 -
Shapely/branches/1.2/setup.py
r1536 r1548 7 7 warnings.warn("Failed to import distribute_setup", ImportWarning) 8 8 9 from setuptools import setup, Extension9 from setuptools import setup, find_packages 10 10 import sys 11 11 … … 31 31 long_description = readme_text, 32 32 packages = ['shapely', 'shapely.geometry'], 33 scripts = ['examples/dissolve.py', 'examples/intersect.py'], 34 # include_package_data=True, 33 35 install_requires = install_requires, 34 36 test_suite = 'shapely.tests.test_suite',
