/setup.py

https://github.com/CharlesPikachu/DecryptLogin · Python · 42 lines · 24 code · 4 blank · 14 comment · 1 complexity · ed81cc4c0a3f9d18733cb70b6a795487 MD5 · raw file

  1. '''
  2. Function:
  3. setup
  4. Author:
  5. Charles
  6. 微信公众号:
  7. Charles的皮卡丘
  8. GitHub:
  9. https://github.com/CharlesPikachu
  10. 更新日期:
  11. 2020-04-12
  12. '''
  13. import DecryptLogin
  14. from setuptools import setup, find_packages
  15. '''readme'''
  16. with open('README.md', 'r', encoding='utf-8') as f:
  17. long_description = f.read()
  18. '''setup'''
  19. setup(
  20. name='DecryptLogin',
  21. version=DecryptLogin.__version__,
  22. description='Login some website using requests.',
  23. long_description=long_description,
  24. long_description_content_type='text/markdown',
  25. classifiers=[
  26. 'License :: OSI Approved :: MIT License',
  27. 'Programming Language :: Python :: 3',
  28. 'Intended Audience :: Developers',
  29. 'Operating System :: OS Independent'],
  30. author='Charles',
  31. url='https://github.com/CharlesPikachu/DecryptLogin',
  32. author_email='charlesblwx@gmail.com',
  33. license='MIT',
  34. include_package_data=True,
  35. install_requires=['rsa >= 4.0', 'qrcode >= 6.1', 'pillow >= 6.0.0', 'PyExecJS >= 1.5.1', 'requests >= 2.22.0', 'pycryptodome >= 3.8.1', 'requests_toolbelt >= 0.9.1'],
  36. zip_safe=True,
  37. packages=find_packages()
  38. )