/setup.py

https://github.com/CharlesPikachu/Music-Downloader · Python · 40 lines · 24 code · 4 blank · 12 comment · 1 complexity · b6d971bdde1982adb325e7a5371e8dd2 MD5 · raw file

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