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

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

Updated classifiers

File size: 1.5 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.1.1'
5
6setup(name='quintagroup.analytics',
7      version=version,
8      description="Plone site's statistics",
9      long_description=open("README.txt").read() + "\n" +
10      open(os.path.join("docs", "HISTORY.txt")).read(),
11      classifiers=[
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      ],
30      keywords='',
31      author='Quintagroup',
32      author_email='support@quintagroup.com',
33      url='http://svn.quintagroup.com/products/quintagroup.analytics',
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.