root/branches/1.0rc1/MapFish/server/python/setup.py @ 1067

Revision 1067, 2.1 kB (checked in by elemoine, 5 years ago)

fix the versions of dependencies

Line 
1#
2# Copyright (C) 2007-2008  Camptocamp
3
4# This file is part of MapFish Server
5
6# MapFish Server is free software: you can redistribute it and/or modify
7# it under the terms of the GNU Lesser General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10
11# MapFish Server is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU Lesser General Public License for more details.
15
16# You should have received a copy of the GNU Lesser General Public License
17# along with MapFish Server.  If not, see <http://www.gnu.org/licenses/>.
18#
19
20try:
21    from setuptools import setup, find_packages
22except ImportError:
23    from ez_setup import use_setuptools
24    use_setuptools()
25    from setuptools import setup, find_packages
26
27setup(name                 = 'MapFish',
28      version              = '1.0rc1',
29      license              = 'LGPLv3',
30      install_requires     = ['SQLAlchemy == 0.5.0rc1',
31                              'Pylons == 0.9.6.2',
32                              'Shapely == 1.0.7',
33                              'geojson == 1.0'],
34      zip_safe             = False,
35      include_package_data = True,
36      packages             = find_packages(),
37      classifiers          = [
38        'Development Status :: 3 - Alpha',
39        'Intended Audience :: Developers',
40        'Intended Audience :: Science/Research',
41        'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
42        'Operating System :: OS Independent',
43        'Programming Language :: Python',
44        'Topic :: Scientific/Engineering :: GIS',
45        ],
46      entry_points         = """
47        [paste.paster_create_template]
48        mapfish = mapfish.util:MapFishTemplate
49        [paste.paster_command]
50        mf-controller = mapfish.commands:MapFishControllerCommand
51        mf-model = mapfish.commands:MapFishModelCommand
52        mf-layer = mapfish.commands:MapFishLayerCommand
53        """
54)
Note: See TracBrowser for help on using the browser.