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

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

make configlet work, add tests for controlpanel, some minor fixes to interfaces and dependencies

  • Property svn:eol-style set to native
File size: 1.4 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          'plone.app.z3cform==0.4.6',
33          'plone.z3cform==0.5.5',
34          'z3c.form==1.9.0',
35          'collective.testcaselayer',
36      ],
37      entry_points="""
38      [z3c.autoinclude.plugin]
39      target = plone
40      """,
41      )
Note: See TracBrowser for help on using the repository browser.