source: products/quintagroup.analytics/trunk/setup.py

Last change on this file was 3589, checked in by ktarasz, 11 years ago

Updated classifiers

File size: 1.5 KB
RevLine 
[2870]1from setuptools import setup, find_packages
2import os
3
[3469]4version = '1.1.1'
[2870]5
[2880]6setup(name='quintagroup.analytics',
[2870]7      version=version,
[2880]8      description="Plone site's statistics",
[2870]9      long_description=open("README.txt").read() + "\n" +
[3589]10      open(os.path.join("docs", "HISTORY.txt")).read(),
[2870]11      classifiers=[
[3589]12          "Development Status :: 5 - Production/Stable",
13          "Environment :: Web Environment",
14          "Framework :: Plone :: 3.0",
15          "Framework :: Plone :: 3.1",
16          "Framework :: Plone :: 3.2",
17          "Framework :: Plone :: 3.3",
18          "Framework :: Plone :: 4.0",
19          "Framework :: Plone :: 4.1",
20          "Framework :: Plone :: 4.2",
21          "Framework :: Plone :: 4.3",
22          "Framework :: Plone",
23          "Framework :: Zope2",
24          "Framework :: Zope3",
25          "License :: OSI Approved :: GNU General Public License (GPL)",
26          "Operating System :: OS Independent",
27          "Programming Language :: Python",
28          "Topic :: Software Development :: Libraries :: Python Modules",
29      ],
[2870]30      keywords='',
31      author='Quintagroup',
32      author_email='support@quintagroup.com',
[2880]33      url='http://svn.quintagroup.com/products/quintagroup.analytics',
[2870]34      license='GPL',
35      packages=find_packages(exclude=['ez_setup']),
36      namespace_packages=['quintagroup'],
37      include_package_data=True,
38      zip_safe=False,
39      install_requires=[
40          'setuptools',
41          'GChartWrapper'
42          # -*- Extra requirements: -*-
43      ],
44      entry_points="""
45      """,
46      )
Note: See TracBrowser for help on using the repository browser.