from setuptools import setup, find_packages

setup(name='ztm.humanmsg',
      version='1.0-4',
      description="This module packages the humanmsg library forsimpler 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 conflicts with other packages.",
      long_description="""""",
      keywords='DOM',
      author='ztmproject.org',
      author_email='ztm@ztmproject.org',
      url='http://ztmproject.org/code/ztm.humanmsg',
      license='Apache License 2.0',
      classifiers=['Programming Language :: Javascript',
                   'Environment :: Web Environment',
                   'Framework :: Zope3',
                   ],
      dependency_links=["http://ztmproject.org/snapshots/"],
      packages=find_packages('src'),
      package_dir={'': 'src'},
      namespace_packages=['ztm'],
      include_package_data=True,
      zip_safe=False,
      install_requires=['setuptools', 'ztm.jquery.core', 'zope.browserresource'],
      )

