source: products/quintagroup.portlet.map/trunk/setup.py @ 2188

Last change on this file since 2188 was 2188, checked in by mylan, 14 years ago

Initial import the package

File size: 1.1 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.1'
5
6setup(name='quintagroup.portlet.map',
7      version=version,
8      description="Quintagroup Google Map portlet",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Framework :: Plone",
14        "Programming Language :: Python",
15        ],
16      keywords='\x1b[B\x1b[B\x1b[BGoogleMaps portlet plone Product.Maps',
17      author='mylan',
18      author_email='support@quintagroup.com',
19      url='http://svn.quintagroup.com/products/quintagroup.portlet.map',
20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup', 'quintagroup.portlet'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
27          # -*- Extra requirements: -*-
28      ],
29      entry_points="""
30      # -*- Entry points: -*-
31
32      [z3c.autoinclude.plugin]
33      target = plone
34      """,
35      )
Note: See TracBrowser for help on using the repository browser.