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

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

fix typo

  • 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      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
13      classifiers=[
14        "Framework :: Plone",
15        "Programming Language :: Python",
16        "Topic :: Software Development :: Libraries :: Python Modules",
17        ],
18      keywords='web plone menu',
19      author='Vitaliy Podoba',
20      author_email='piv@quintagroup.com',
21      url='http://svn.quintagroup.com/products/quintagroup.dropdownmenu',
22      license='GPL',
23      packages=find_packages(exclude=['ez_setup']),
24      namespace_packages=['quintagroup'],
25      include_package_data=True,
26      zip_safe=False,
27      install_requires=[
28          'setuptools',
29          'Plone',
30          'plone.app.registry',
31          'plone.app.z3cform==0.4.6',
32          'plone.z3cform==0.5.5',
33          'z3c.form==1.9.0',
34          'collective.testcaselayer',
35      ],
36      entry_points="""
37      [z3c.autoinclude.plugin]
38      target = plone
39      """,
40      )
Note: See TracBrowser for help on using the repository browser.