source: products/quintagroup.portlet.collection/trunk/setup.py @ 3567

Last change on this file since 3567 was 3567, checked in by potar, 12 years ago

fixed pep8

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