source: products/quintagroup.plonecomments/trunk/setup.py @ 3255

Last change on this file since 3255 was 3249, checked in by chervol, 13 years ago

prepare release

File size: 1.1 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '4.1.7'
5
6setup(name='quintagroup.plonecomments',
7      version=version,
8      description="Plone Comments",
9      long_description=open("README.txt").read() + "\n\n" +
10          open(os.path.join("docs", "INSTALL.txt")).read() + "\n\n" +
11          open(os.path.join("docs", "HISTORY.txt")).read(),
12      classifiers=[
13        "Framework :: Plone",
14        "Programming Language :: Python",
15        "Topic :: Software Development :: Libraries :: Python Modules",
16        ],
17      keywords='web zope plone theme',
18      author='Quintagroup',
19      author_email='support@quintagroup.com',
20      url='http://quintagroup.com/services/plone-development'
21          '/products/plone-comments',
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.browserlayer',
30          # -*- Extra requirements: -*-
31      ],
32      entry_points="""
33      # -*- Entry points: -*-
34
35      """,
36      )
Note: See TracBrowser for help on using the repository browser.