-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (41 loc) · 1.55 KB
/
setup.py
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
47
from setuptools import setup, find_packages
import owscapable
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='OwsCapable',
version=owscapable.__version__,
description='OGC Web Service Parsing Utility (based on OWSLib)',
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='[email protected]',
maintainer='Soren Scott',
maintainer_email='[email protected]',
url='http://github.io/bcube/OwsCapable',
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',
]
)