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

Last change on this file since 3422 was 3422, checked in by chervol, 12 years ago

Prepare quintagroup.analytics 1.1.

File size: 982 bytes
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '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        "Framework :: Plone",
13        "Programming Language :: Python",
14        "Topic :: Software Development :: Libraries :: Python Modules",
15        ],
16      keywords='',
17      author='Quintagroup',
18      author_email='support@quintagroup.com',
19      url='http://svn.quintagroup.com/products/quintagroup.analytics',
20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
27          'GChartWrapper'
28          # -*- Extra requirements: -*-
29      ],
30      entry_points="""
31      """,
32      )
Note: See TracBrowser for help on using the repository browser.