source: products/quintagroup.plonetabs/branches/tests/setup.py @ 3402

Last change on this file since 3402 was 3402, checked in by potar, 12 years ago

Fixing pep8

  • Property svn:eol-style set to native
File size: 1.2 KB
RevLine 
[2424]1
2
3import os
[42]4from setuptools import setup, find_packages
5
[3382]6version = '0.7'
[42]7
8setup(name='quintagroup.plonetabs',
9      version=version,
10      description="Quintagroup Plone Tabs",
[876]11      long_description=open("README.txt").read() + "\n" +
12                       open(os.path.join("docs", "HISTORY.txt")).read(),
[2424]13
[3402]14      # Get more strings from
15      # http://www.python.org/pypi?%3Aaction=list_classifiers
[42]16      classifiers=[
17        "Framework :: Plone",
18        "Framework :: Zope2",
19        "Framework :: Zope3",
20        "Programming Language :: Python",
21        "Topic :: Software Development :: Libraries :: Python Modules",
22        ],
23      keywords='quintagroup plonetabs',
[2424]24      author='"Quintagroup": http://quintagroup.com/',
25      author_email='support@quintagroup.com',
[3402]26      url='http://quintagroup.com/' +\
27          'services/plone-development/products/plone-tabs',
[42]28      license='GPL',
29      packages=find_packages(exclude=['ez_setup']),
30      namespace_packages=['quintagroup'],
31      include_package_data=True,
32      zip_safe=False,
33      install_requires=[
34          'setuptools',
[3401]35          'plone.browserlayer',
[42]36          # -*- Extra requirements: -*-
37      ],
38      entry_points="""
39      # -*- Entry points: -*-
40      """,
41      )
Note: See TracBrowser for help on using the repository browser.