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

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

Added install requires

File size: 2.0 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                        'gdata',
59                        'quintagroup.gauth',
60                        # -*- Extra requirements: -*-
61                        ],
62      tests_require=tests_require,
63      extras_require=dict(tests=tests_require),
64      test_suite = 'plone.example.tests.test_docs.test_suite',
65      entry_points="""
66      # -*- entry_points -*-
67      [z3c.autoinclude.plugin]
68      target = plone
69      """,
70      )
Note: See TracBrowser for help on using the repository browser.