setup.py 779 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. from setuptools import setup, find_packages
  3. setup(
  4. name='authen.wxlogin',
  5. version=0.50,
  6. url='http://git.trops-global.com/authen/trops_wxlogin.git',
  7. license='GPL',
  8. author='authen',
  9. author_email='295002887@qq.com',
  10. description='wxlogin func',
  11. long_description=__doc__,
  12. packages=find_packages(exclude=['ez_setup']),
  13. namespace_packages=['authen'],
  14. include_package_data=True,
  15. install_requires=[
  16. 'setuptools'
  17. ],
  18. classifiers=[
  19. "Framework :: Plone",
  20. "Framework :: Zope2",
  21. "Framework :: Zope3",
  22. "Programming Language :: Python",
  23. "Topic :: Software Development :: Libraries :: Python Modules",
  24. ],
  25. entry_points="""
  26. # -*- Entry points: -*-
  27. """
  28. )