|
Revision 962, 0.9 KB
(checked in by dokai, 3 years ago)
|
|
Partial integration of plone.browserlayer.
|
| Line | |
|---|
| 1 | from setuptools import setup, find_packages |
|---|
| 2 | import sys, os |
|---|
| 3 | |
|---|
| 4 | version = '0.7a1' |
|---|
| 5 | |
|---|
| 6 | setup(name='PrimaGIS', |
|---|
| 7 | version=version, |
|---|
| 8 | description='Advanced web mapping application for Plone', |
|---|
| 9 | long_description='''\ |
|---|
| 10 | ''', |
|---|
| 11 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 12 | classifiers=[ |
|---|
| 13 | 'Framework :: Zope2', |
|---|
| 14 | 'Programming Language :: Python', |
|---|
| 15 | 'Intended Audience :: Science/Research', |
|---|
| 16 | 'Topic :: Scientific/Engineering :: GIS', |
|---|
| 17 | ], |
|---|
| 18 | keywords='', |
|---|
| 19 | author='Kai Lautaportti', |
|---|
| 20 | author_email='kai.lautaportti@hexagonit.fi', |
|---|
| 21 | url='http://www.primagis.fi/', |
|---|
| 22 | license='GPL', |
|---|
| 23 | packages=find_packages('src'), |
|---|
| 24 | package_dir={'':'src'}, |
|---|
| 25 | include_package_data=True, |
|---|
| 26 | zip_safe=False, |
|---|
| 27 | install_requires=[ |
|---|
| 28 | 'setuptools', |
|---|
| 29 | 'ZCO', |
|---|
| 30 | 'plone.browserlayer', |
|---|
| 31 | ], |
|---|
| 32 | tests_require=['zope.testing'], |
|---|
| 33 | ) |
|---|