root/mapfish-framework/plugins/client/trunk/mapfish.framework.plugins.client/setup.py @ 2282

Revision 2282, 1.1 kB (checked in by bbinet, 4 years ago)

update mapfish.framework.plugins.client (still unstable)

Line 
1try:
2    from setuptools import setup, find_packages
3except ImportError:
4    from ez_setup import use_setuptools
5    use_setuptools()
6    from setuptools import setup, find_packages
7
8version = '0.1dev'
9
10setup(name='mapfish.framework.plugins.client',
11      version=version,
12      description="A plugin for mapfish to deliver client side javascript code.",
13      long_description="""\
14A plugin for mapfish to deliver client side javascript code... (long description)""",
15      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
16      keywords='mapfish client javascript geoext openlayers extjs',
17      author='Camptocamp',
18      author_email='info@camptocamp.com',
19      url='http://www.camptocamp.com',
20      license='LGPLv3',
21      packages=find_packages(),
22      include_package_data=True,
23      zip_safe=False,
24      install_requires=[
25          "Paste>=1.7.2", "PasteDeploy>=1.3.2", "PasteScript>=1.7.3",
26          "Tempita>=0.2"
27      ],
28      entry_points="""
29        [paste.paster_create_template]
30        mapfish_client = mapfishframeworkpluginsclient.util:MapFishClientTemplate
31      """,
32      )
Note: See TracBrowser for help on using the browser.