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

Last change on this file since 1179 was 1179, checked in by piv, 15 years ago

add depencencies, register profile, add settings using plone.registry, remove zopeskel entry points, remove registration of package as zope2 product, update readmes

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