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

Last change on this file since 3070 was 3070, checked in by kroman0, 13 years ago

Updated HISTORY.txt and package version

File size: 1.4 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '4.1.6'
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      # 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 zope plone theme',
19      author='Quintagroup',
20      author_email='support@quintagroup.com',
21      url='http://quintagroup.com/services/plone-development/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      [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      paster_plugins = ["ZopeSkel"],
42      )
Note: See TracBrowser for help on using the repository browser.