source: products/quintagroup.portletmanager.footer/trunk/setup.py @ 3652

Last change on this file since 3652 was 1320, checked in by olha, 14 years ago

doc files updated

File size: 1.2 KB
Line 
1# -*- coding: utf-8 -*-
2from setuptools import setup, find_packages
3import os
4
5version = '0.1'
6
7setup(name='quintagroup.portletmanager.footer',
8      version=version,
9      description="Portlet manager that is rendered in page footer",
10      long_description=open("README.txt").read() + "\n\n" +
11                       open(os.path.join("docs", "INSTALL.txt")).read() + "\n\n" +
12                       open(os.path.join("docs", "HISTORY.txt")).read(),
13      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
14      classifiers=[
15        "Programming Language :: Python",
16        "Topic :: Software Development :: Libraries :: Python Modules",
17        ],
18      keywords='plone portletmanager footer',
19      author='Bohdan Koval',
20      author_email='koval@quintagroup.com',
21      url='http://svn.quintagroup.com/products/quintagroup.portletmanager.footer/trunk',
22      license='GPL',
23      packages=find_packages(exclude=['ez_setup']),
24      namespace_packages=['quintagroup', 'quintagroup.portletmanager'],
25      include_package_data=True,
26      zip_safe=False,
27      install_requires=[
28          'setuptools',
29          # -*- Extra requirements: -*-
30      ],
31      entry_points="""
32      # -*- Entry points: -*-
33      """,
34      )
Note: See TracBrowser for help on using the repository browser.