from setuptools import setup, find_packages version = '0.1' setup(name='zgeo.primagisdemo', version=version, description="PrimaGIS demo product", long_description="""\ """, # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Framework :: Plone", "Framework :: Zope2", "Framework :: Zope3", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ], keywords='', author='Sune Broendum Woeller', author_email='sune@woeller.dk', url='http://svn.gispython.org/svn/zope/zgeo.primagisdemo/', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['zgeo'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- """, )