1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
from setuptools import setup, find_packages
import owslib
from setuptools.command.test import test as TestCommand
import sys
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
readme = open('README.txt').read()
reqs = [line.strip() for line in open('requirements.txt')]
if sys.version[:3] < '2.7':
reqs += [line.strip() for line in open('requirements-2.6.txt')]
setup(name = 'OWSLib',
version = owslib.__version__,
description = 'OGC Web Service utility library',
long_description = readme,
license = 'BSD',
keywords = 'gis ogc iso 19115 fgdc dif ows wfs wms sos csw wps wcs capabilities metadata wmts',
author = 'Sean Gillies',
author_email = 'sean.gillies@gmail.com',
maintainer = 'Tom Kralidis',
maintainer_email = 'tomkralidis@gmail.com',
url = 'http://geopython.github.io/OWSLib',
install_requires = reqs,
cmdclass = {'test': PyTest},
packages = find_packages(exclude=["docs", "etc", "examples", "tests"]),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
],
)
|