source: products/Products.qPloneDropDownMenu/tags/3.0/setup.py @ 2676

Last change on this file since 2676 was 2673, checked in by olha, 14 years ago

README, HISTORY files updated, INSTALL, LICENCE files added

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '3.0'
5
6setup(name='Products.qPloneDropDownMenu',
7      version=version,
8      description="The product allows Plone websites to update multilevel portal dropdown menu",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "INSTALL.txt")).read() + "\n" +
11                       open(os.path.join("docs", "HISTORY.txt")).read(),
12      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
13      classifiers=[
14        "Programming Language :: Python",
15        "Topic :: Software Development :: Libraries :: Python Modules",
16        ],
17      keywords='plone dropdown menu',
18      author='Quintagroup',
19      author_email='support@quintagroup.com',
20      url='http://quintagroup.com/services/plone-development/products/plone-drop-down-menu',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['Products'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          # -*- Extra requirements: -*-
29      ],
30      entry_points="""
31      # -*- Entry points: -*-
32      """,
33      )
Note: See TracBrowser for help on using the repository browser.