source: products/quintagroup.plonetabs/branches/nokss/setup.py @ 3679

Last change on this file since 3679 was 3644, checked in by enkidu, 11 years ago

added plone.app.kss to install requires

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1
2
3import os
4from setuptools import setup, find_packages
5
6version = '0.7.1-dev'
7
8setup(name='quintagroup.plonetabs',
9      version=version,
10      description="Quintagroup Plone Tabs",
11      long_description=open("README.txt").read() + "\n" +
12      open(os.path.join("docs", "HISTORY.txt")).read(),
13
14      # Get more strings from
15      # http://www.python.org/pypi?%3Aaction=list_classifiers
16      classifiers=[
17          "Development Status :: 5 - Production/Stable",
18          "Environment :: Web Environment",
19          "Framework :: Plone",
20          "Framework :: Plone :: 3.2",
21          "Framework :: Plone :: 3.3",
22          "Framework :: Plone :: 4.0",
23          "Framework :: Plone :: 4.1",
24          "Framework :: Plone :: 4.2",
25          "Framework :: Plone :: 4.3",
26          "Framework :: Zope2",
27          "Framework :: Zope3",
28          "License :: OSI Approved :: GNU General Public License (GPL)",
29          "Operating System :: OS Independent",
30          "Programming Language :: Python",
31          "Topic :: Security",
32          "Topic :: Software Development :: Libraries :: Python Modules",
33      ],
34      keywords='quintagroup plonetabs',
35      author='"Quintagroup": http://quintagroup.com/',
36      author_email='support@quintagroup.com',
37      url='http://quintagroup.com/'
38          'services/plone-development/products/plone-tabs',
39      license='GPL',
40      packages=find_packages(exclude=['ez_setup']),
41      namespace_packages=['quintagroup'],
42      include_package_data=True,
43      zip_safe=False,
44      install_requires=[
45          'setuptools',
46          'plone.app.kss',
47          'plone.browserlayer'
48          # -*- Extra requirements: -*-
49      ],
50      entry_points="""
51      # -*- Entry points: -*-
52      """,
53      )
Note: See TracBrowser for help on using the repository browser.