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

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

started with doc tests

  • Property svn:eol-style set to native
File size: 1.5 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          # -*- Extra requirements: -*-
31      ],
32      entry_points="""
33      # -*- Entry points: -*-
34
35      [distutils.setup_keywords]
36      paster_plugins = setuptools.dist:assert_string_list
37
38      [egg_info.writers]
39      paster_plugins.txt = setuptools.command.egg_info:write_arg
40
41      [z3c.autoinclude.plugin]
42      target = plone
43      """,
44      paster_plugins = ["ZopeSkel"],
45      )
Note: See TracBrowser for help on using the repository browser.