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

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

Added choose the titles of columns by contentype

File size: 2.3 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                        'Products.DataGridField',
61                        # -*- Extra requirements: -*-
62                        ],
63      tests_require=tests_require,
64      extras_require=dict(tests=tests_require),
65      test_suite = 'plone.example.tests.test_docs.test_suite',
66      entry_points="""
67      # -*- entry_points -*-
68      [z3c.autoinclude.plugin]
69      target = plone
70
71      [distutils.setup_keywords]
72      paster_plugins = setuptools.dist:assert_string_list
73
74      [egg_info.writers]
75      paster_plugins.txt = setuptools.command.egg_info:write_arg
76      """,
77      #paster_plugins = ["ZopeSkel"],
78      )
Note: See TracBrowser for help on using the repository browser.