|
Revision 2282, 1.1 kB
(checked in by bbinet, 4 years ago)
|
|
update mapfish.framework.plugins.client (still unstable)
|
| Line | |
|---|
| 1 | try: |
|---|
| 2 | from setuptools import setup, find_packages |
|---|
| 3 | except ImportError: |
|---|
| 4 | from ez_setup import use_setuptools |
|---|
| 5 | use_setuptools() |
|---|
| 6 | from setuptools import setup, find_packages |
|---|
| 7 | |
|---|
| 8 | version = '0.1dev' |
|---|
| 9 | |
|---|
| 10 | setup(name='mapfish.framework.plugins.client', |
|---|
| 11 | version=version, |
|---|
| 12 | description="A plugin for mapfish to deliver client side javascript code.", |
|---|
| 13 | long_description="""\ |
|---|
| 14 | A 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 | ) |
|---|