from setuptools import setup, find_packages

readme = file('README.txt').read()
changes = file('CHANGES.txt').read()
long_description = (readme + '\n\n' + changes)

setup(name='ztm.jquery.ui',
      version='1.8.5-1',
      description="This module packages the jQuery.ui library for simpler deployment with ZTM and Zope. With the exception of a few moved folders, no changes are made. There are no dependencies on anything from ZTM. It is placed inside the ztm namespace to avoid conflicts with other packages.",
      long_description=long_description,
      keywords='javascript',
      author='JQuery UI Team (Packaged for ZTM Topic Maps by ztmproject.org)',
      author_email='ztm@ztmproject.org',
      url='http://ztmproject.org/code/ztm.jquery.ui',
      license='GPL, 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'
                  ],
      dependency_links=["http://ztmproject.org/snapshots/"],
      packages=find_packages('src'),
      package_dir = {'': 'src'},
      namespace_packages = ['ztm', 'ztm.jquery'],
      include_package_data=True,
      zip_safe=False,
      install_requires=['setuptools', 'ztm.jquery.core', 'zope.browserresource'],
      )

