source: products/quintagroup.dropdownmenu/trunk/setup.py @ 2844

Last change on this file since 2844 was 2844, checked in by chervol, 14 years ago

bump version added contributors file

  • Property svn:eol-style set to native
File size: 1.1 KB
RevLine 
[1154]1from setuptools import setup, find_packages
2import os
3
[2844]4version = '1.1'
[1154]5
6setup(name='quintagroup.dropdownmenu',
7      version=version,
[1157]8      description="Multilevel portal dropdown menu for Plone sites.",
[1154]9      long_description=open("README.txt").read() + "\n" +
[2794]10                       open(os.path.join("docs", "HISTORY.txt")).read(),
[1154]11      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Framework :: Plone",
14        "Programming Language :: Python",
15        "Topic :: Software Development :: Libraries :: Python Modules",
16        ],
[1157]17      keywords='web plone menu',
[2844]18      author='Quintagroup',
19      author_email='support@quintagroup.com',
[1154]20      url='http://svn.quintagroup.com/products/quintagroup.dropdownmenu',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['quintagroup'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
[2703]28          'plone.registry',
29          'plone.app.registry',
[1154]30      ],
31      entry_points="""
[1156]32      [z3c.autoinclude.plugin]
33      target = plone
[1154]34      """,
35      )
Note: See TracBrowser for help on using the repository browser.