from setuptools import setup, find_packages

setup(name='ztm.jquery.timeago',
      version='0.8.2',
      description="This module packages the jquery.timeago library for simpler deployment with ZTM and Zope. No changes are made and there are no dependencies on anything from ZTM. It is placed inside the ztm namespace to avoid name conflicts with other modules that repackage jQuery plugins differently.",
      long_description="""""",
      keywords='DOM',
      author='Ryan McGeary (Repackaged for ZTM by ztmproject.org)',
      author_email='ztm@ztmproject.org',
      url='http://ztmproject.org/code/ztm.jquery.timeago',
      license='MIT',
      # Get more from http://www.python.org/pypi?%3Aaction=list_classifiers
      classifiers=[ 'Programming Language :: Python'
                  , 'Environment :: Web Environment'
                  , 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
                  , 'Framework :: Zope3'
                  ],

      packages=find_packages('src'),
      package_dir = {'': 'src'},
      namespace_packages = ['ztm'],
      include_package_data=True,
      zip_safe=False,
      install_requires=['setuptools'],
      entry_points = """"""
      )

