source: products/ploneorg.kudobounty/trunk/setup.py @ 3129

Last change on this file since 3129 was 3129, checked in by mylan, 13 years ago

Initial import of the package

  • Property svn:eol-style set to native
File size: 2.1 KB
Line 
1# -*- coding: utf-8 -*-
2"""
3This module contains the tool of ploneorg.kudobounty
4"""
5import os
6from setuptools import setup, find_packages
7
8
9def read(*rnames):
10    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
11
12version = '0.1'
13
14long_description = (
15    read('README.txt')
16    + '\n' +
17    'Change history\n'
18    '**************\n'
19    + '\n' +
20    read('CHANGES.txt')
21    + '\n' +
22    'Detailed Documentation\n'
23    '**********************\n'
24    + '\n' +
25    read('ploneorg', 'kudobounty', 'README.txt')
26    + '\n' +
27    'Contributors\n'
28    '************\n'
29    + '\n' +
30    read('CONTRIBUTORS.txt')
31    + '\n' +
32    'Download\n'
33    '********\n')
34
35tests_require = ['zope.testing']
36
37setup(name='ploneorg.kudobounty',
38      version=version,
39      description="Bounty Program logo display mechanism for the plone.org",
40      long_description=long_description,
41      # Get more strings from
42      # http://pypi.python.org/pypi?%3Aaction=list_classifiers
43      classifiers=[
44        'Framework :: Plone',
45        'Intended Audience :: Developers',
46        'License :: OSI Approved :: GNU General Public License (GPL)',
47        ],
48      keywords='',
49      author='mylan at quintagroup.com',
50      author_email='support@quintagroup.com',
51      url='http://svn.quintagroup.com/products/',
52      license='GPL',
53      packages=find_packages(exclude=['ez_setup']),
54      namespace_packages=['ploneorg', ],
55      include_package_data=True,
56      zip_safe=False,
57      install_requires=['setuptools',
58                        # -*- Extra requirements: -*-
59                        'Products.PloneFormGen',
60                        'Products.ContentWellPortlets == 3.0',
61                        'redturtle.portlet.collection == 0.2.5',
62                        ],
63      tests_require=tests_require,
64      extras_require=dict(tests=tests_require),
65      test_suite='ploneorg.kudobounty.tests.test_docs.test_suite',
66      entry_points="""
67      # -*- entry_points -*-
68      [z3c.autoinclude.plugin]
69      target = plone
70      """,
71      setup_requires=["PasteScript"],
72      paster_plugins=["ZopeSkel"],
73      )
Note: See TracBrowser for help on using the repository browser.