setup.py 429 B

123456789101112131415161718192021
  1. from setuptools import setup
  2. setup(
  3. name='wxbot',
  4. version='0.1.0',
  5. description='Wechat unofficial bot framework.',
  6. url='https://github.com/liuwons/wxBot',
  7. author='Weston Liu',
  8. author_email='a@lwons.com',
  9. license='Apache 2.0',
  10. classifiers=[],
  11. packages=['wxbot'],
  12. install_requires=[
  13. 'jsonpickle',
  14. 'Pillow',
  15. 'pyqrcode',
  16. 'pypng',
  17. 'requests',
  18. ],
  19. )