Changeset 1033
- Timestamp:
- 01/24/08 08:40:51
- Files:
-
- OWSLib/branches/wcstemp/setup.py (modified) (2 diffs)
- OWSLib/branches/wcstemp/tests/__init__.py (modified) (1 diff)
- OWSLib/branches/wcstemp/tests/test_doctests.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OWSLib/branches/wcstemp/setup.py
r799 r1033 3 3 4 4 setup(name = 'OWSLib', 5 version = '0. 2.1',5 version = '0.3', 6 6 description = 'OGC Web Service utility library', 7 7 license = 'BSD', … … 11 11 maintainer = 'Sean Gillies', 12 12 maintainer_email = 'sgillies@frii.com', 13 url = 'http://trac.gispython.org/projects/PCL/wiki/O wsLib',13 url = 'http://trac.gispython.org/projects/PCL/wiki/OWSLib', 14 14 packages = ['owslib'], 15 tests_require = ['zope.testing'], 15 #tests_require = ['zope.testing'], 16 test_suite = 'tests.test_suite', 16 17 classifiers = [ 17 18 'Development Status :: 3 - Alpha', OWSLib/branches/wcstemp/tests/__init__.py
r799 r1033 1 1 # package 2 from test_doctests import test_suite OWSLib/branches/wcstemp/tests/test_doctests.py
r799 r1033 25 25 import os 26 26 27 from zope.testing import doctest 27 try: 28 from zope.testing import doctest 29 except ImportError: 30 import doctest 28 31 29 32 optionflags = (doctest.REPORT_ONLY_FIRST_FAILURE |
