Skip to content
Snippets Groups Projects
Commit c207c855 authored by Wannes Rombouts's avatar Wannes Rombouts
Browse files

Added simple setup.py

parent ced96cc6
No related branches found
No related tags found
No related merge requests found
setup.py 0 → 100644
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# MapServer REST API is a python wrapper around MapServer which #
# allows to manipulate a mapfile in a RESTFul way. It has been #
# developped to match as close as possible the way the GeoServer #
# REST API acts. #
# #
# Copyright (C) 2011-2013 Neogeo Technologies. #
# #
# This file is part of MapServer Rest API. #
# #
# MapServer Rest API is free software: you can redistribute it #
# and/or modify it under the terms of the GNU General Public License #
# as published by the Free Software Foundation, either version 3 of #
# the License, or (at your option) any later version. #
# #
# MapServer Rest API is distributed in the hope that it will be #
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty #
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
import sys
from distutils.core import setup
setup(
name='MapServer Rest API',
version='0.1.0',
author='Neogeo Technologies',
author_email='contact@neogeo-online.net',
description='A RESTFul interface for MapServer',
long_description=file('README.rst','rb').read(),
keywords='neogeo mapserver rest restful',
license="GPLv3",
#url='',
classifiers=[
'Development Status :: Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GPLv3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: GIS',
],
#packages=,
#package_dir={'':'src'},
#namespace_packages=['mra'],
requires=[
'web.py',
'pyyaml',
'osgeo',
],
scripts=[
'src/server.py',
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment