root/OWSLib/trunk/setup.py

Revision 1099 (checked in by seang, 4 months ago)

Restore setup.py

Line 
1 from setuptools import setup
2
3 readme = open('README.txt', 'rb').read()
4
5 setup(name          = 'OWSLib',
6       version       = '0.3',
7       description   = 'OGC Web Service utility library',
8       long_description = readme,
9       license       = 'BSD',
10       keywords      = 'gis ogc ows wfs wms capabilities metadata',
11       author        = 'Sean Gillies',
12       author_email  = 'sgillies@frii.com',
13       maintainer        = 'Sean Gillies',
14       maintainer_email  = 'sgillies@frii.com',
15       url           = 'http://trac.gispython.org/projects/PCL/wiki/OwsLib',
16       packages      = ['owslib'],
17       test_suite    = 'tests.test_suite',
18       classifiers   = [
19         'Development Status :: 3 - Alpha',
20         'Intended Audience :: Developers',
21         'Intended Audience :: Science/Research',
22         'License :: OSI Approved :: BSD License',
23         'Operating System :: OS Independent',
24         'Programming Language :: Python',
25         'Topic :: Scientific/Engineering :: GIS',
26         ],
27 )
28
Note: See TracBrowser for help on using the browser.