Changeset 524

Show
Ignore:
Timestamp:
10/18/06 17:08:26
Author:
seang
Message:

get down to one setup file, improve the readme

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OWSLib/trunk/README.txt

    r511 r524  
     1 
    12OWSLib 
    23====== 
    34 
    4 An etree-based module for working with OGC W*S web services. 
     5An etree-based module for working with OGC W*S web services. This package 
     6provides a common API for WMS and WFS service metadata, and wrappers for 
     7GetCapabilities, GetMap, and GetFeature requests. 
    58 
    69 
     
    2023----- 
    2124 
    22 See tests/JPLCapabilities.txt or tests/TelaCapabilities.txt for examples. 
     25See tests/*.txt, which are doctests. 
    2326 
    2427 
     
    2629------------ 
    2730 
    28 OWSLib works with WMS version 1.1 and WFS 1.0. Other versions are not supported at this time. 
     31OWSLib works with WMS version 1.1 and WFS 1.0. Other versions are not supported 
     32at this time. 
    2933 
  • OWSLib/trunk/setup.py

    r379 r524  
    11 
    2 from distutils.core import setup 
     2try: 
     3    from setuptools import setup 
     4except ImportError: 
     5    from distutils import setup 
    36 
    47setup(name          = 'OWSLib', 
    5       version       = '0.0', 
     8      version       = '0.1.0', 
    69      description   = 'OGC Web Service utility package', 
     10      license       = 'GPL', 
     11      keywords      = 'ogc ows wfs wms capabilities metadata', 
    712      author        = 'Sean Gillies', 
    813      author_email  = 'sgillies@frii.com', 
     14      maintainer        = 'Sean Gillies', 
     15      maintainer_email  = 'sgillies@frii.com', 
    916      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        ], 
    1127) 
    1228