Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Mapserver REST API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Miscellaneous
Mapserver REST API
Commits
c207c855
Commit
c207c855
authored
11 years ago
by
Wannes Rombouts
Browse files
Options
Downloads
Patches
Plain Diff
Added simple setup.py
parent
ced96cc6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+61
-0
61 additions, 0 deletions
setup.py
with
61 additions
and
0 deletions
setup.py
0 → 100644
+
61
−
0
View file @
c207c855
#!/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
'
,
]
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment