source: products/quintagroup.doublecolumndocument/trunk/setup.py @ 2683

Last change on this file since 2683 was 867, checked in by piv, 17 years ago

Fix blog's type syndication content, update migration external method.

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1# -*- coding: utf-8 -*-
2"""
3This module contains the tool of quintagroup.doublecolumndocument
4"""
5import os
6from setuptools import setup, find_packages
7
8def read(*rnames):
9    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
10
11version = '0.2'
12
13tests_require=['zope.testing']
14
15setup(name='quintagroup.doublecolumndocument',
16      version=version,
17      description="Extends Document with one more extra column",
18      long_description=open("README.txt").read() + "\n" +
19                       open(os.path.join("docs", "HISTORY.txt")).read(),
20      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
21      classifiers=[
22        'Framework :: Plone',
23        'Intended Audience :: Developers',
24        'Topic :: Software Development :: Libraries :: Python Modules',
25        'License :: OSI Approved :: GNU General Public License (GPL)',
26        ],
27      keywords='plone content archetypes document doublecolumn',
28      author='(c) "Quintagroup"',
29      author_email='support@quintagroup.com',
30      url='http://quintagroup.com/services/plone-development/products/',
31      license='GPL',
32      packages=find_packages(exclude=['ez_setup']),
33      namespace_packages=['quintagroup', ],
34      include_package_data=True,
35      zip_safe=False,
36      install_requires=['setuptools',
37                        # -*- Extra requirements: -*-
38                        ],
39      tests_require=tests_require,
40      extras_require=dict(tests=tests_require),
41      test_suite = 'quintagroup.doublecolumndocument.tests.test_docs.test_suite',
42      entry_points="""
43      # -*- entry_points -*-
44      """,
45      )
Note: See TracBrowser for help on using the repository browser.