# -*- coding: utf-8 -*- from setuptools import setup, find_packages setup( name='authen.wxlogin', version=0.33, url='http://git.aoyanming.com/authen29/wxlogin/', license='GPL', author='authen', author_email='295002887@qq.com', description='wxlogin func', long_description=__doc__, packages=find_packages(exclude=['ez_setup']), namespace_packages=['authen'], include_package_data=True, install_requires=[ 'setuptools' ], classifiers=[ "Framework :: Plone", "Framework :: Zope2", "Framework :: Zope3", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ], entry_points=""" # -*- Entry points: -*- """ )