source: products/quintagroup.gdocs.spreadsheet/trunk/setup.py @ 2650

Last change on this file since 2650 was 2642, checked in by liebster, 14 years ago

Initial package import

File size: 2.1 KB
Line 
1# -*- coding: utf-8 -*-
2"""
3This module contains the tool of quintagroup.gdocs.spreadsheet
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 = '1.0'
12
13long_description = (
14    read('README.txt')
15    + '\n' +
16    'Change history\n'
17    '**************\n'
18    + '\n' +
19    read('docs', 'HISTORY.txt')
20    + '\n' +
21    'Detailed Documentation\n'
22    '**********************\n'
23    + '\n' +
24    read('quintagroup', 'gdocs', 'spreadsheet', 'README.txt')
25    + '\n' +
26    'Contributors\n'
27    '************\n'
28    + '\n' +
29    read('CONTRIBUTORS.txt')
30    + '\n' +
31    'Download\n'
32    '********\n'
33    )
34
35tests_require=['zope.testing']
36
37setup(name='quintagroup.gdocs.spreadsheet',
38      version=version,
39      description="",
40      long_description=long_description,
41      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
42      classifiers=[
43        'Framework :: Plone',
44        'Intended Audience :: Developers',
45        'Topic :: Software Development :: Libraries :: Python Modules',
46        'License :: OSI Approved :: GNU General Public License (GPL)',
47        ],
48      keywords='',
49      author='Quintagroup',
50      author_email='support@quintagroup.com',
51      url='http://quintagroup.com/services/plone-development/products/quintagroup.gdocs.spreadsheet',
52      license='GPL',
53      packages=find_packages(exclude=['ez_setup']),
54      namespace_packages=['quintagroup', 'quintagroup.gdocs'],
55      include_package_data=True,
56      zip_safe=False,
57      install_requires=['setuptools',
58                        # -*- Extra requirements: -*-
59                        ],
60      tests_require=tests_require,
61      extras_require=dict(tests=tests_require),
62      test_suite = 'plone.example.tests.test_docs.test_suite',
63      entry_points="""
64      # -*- entry_points -*-
65      [distutils.setup_keywords]
66      paster_plugins = setuptools.dist:assert_string_list
67
68      [egg_info.writers]
69      paster_plugins.txt = setuptools.command.egg_info:write_arg
70      """,
71      paster_plugins = ["ZopeSkel"],
72      )
Note: See TracBrowser for help on using the repository browser.