Changeset 524
- Timestamp:
- 10/18/06 17:08:26
- Files:
-
- OWSLib/trunk/README.txt (modified) (3 diffs)
- OWSLib/trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OWSLib/trunk/README.txt
r511 r524 1 1 2 OWSLib 2 3 ====== 3 4 4 An etree-based module for working with OGC W*S web services. 5 An etree-based module for working with OGC W*S web services. This package 6 provides a common API for WMS and WFS service metadata, and wrappers for 7 GetCapabilities, GetMap, and GetFeature requests. 5 8 6 9 … … 20 23 ----- 21 24 22 See tests/ JPLCapabilities.txt or tests/TelaCapabilities.txt for examples.25 See tests/*.txt, which are doctests. 23 26 24 27 … … 26 29 ------------ 27 30 28 OWSLib works with WMS version 1.1 and WFS 1.0. Other versions are not supported at this time. 31 OWSLib works with WMS version 1.1 and WFS 1.0. Other versions are not supported 32 at this time. 29 33 OWSLib/trunk/setup.py
r379 r524 1 1 2 from distutils.core import setup 2 try: 3 from setuptools import setup 4 except ImportError: 5 from distutils import setup 3 6 4 7 setup(name = 'OWSLib', 5 version = '0. 0',8 version = '0.1.0', 6 9 description = 'OGC Web Service utility package', 10 license = 'GPL', 11 keywords = 'ogc ows wfs wms capabilities metadata', 7 12 author = 'Sean Gillies', 8 13 author_email = 'sgillies@frii.com', 14 maintainer = 'Sean Gillies', 15 maintainer_email = 'sgillies@frii.com', 9 16 url = 'http://www.gispython.org', 10 packages = ['owslib'] 17 packages = ['owslib'], 18 classifiers = [ 19 'Development Status :: 3 - Alpha', 20 'Intended Audience :: Developers', 21 'Intended Audience :: Science/Research', 22 'License :: OSI Approved :: GPL License', 23 'Operating System :: OS Independent', 24 'Programming Language :: Python', 25 'Topic :: Scientific/Engineering :: GIS', 26 ], 11 27 ) 12 28
