A web-scraping tool for verge and techradar
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
626 B

  1. from distutils.core import setup
  2. setup(
  3. name = 'mtranslate',
  4. packages = ['mtranslate'],
  5. version = '1.6',
  6. description = 'Google translate console script with easy to use API',
  7. author = 'Arnaud Alies',
  8. author_email = 'arnaudalies.py@gmail.com',
  9. url = 'https://github.com/mouuff/mtranslate',
  10. download_url = 'https://github.com/mouuff/mtranslate/tarball/1.6',
  11. keywords = ['console', 'translate', 'translator', 'simple', 'google', 'language'],
  12. classifiers = [],
  13. entry_points={
  14. 'console_scripts': [
  15. 'mtranslate = mtranslate.__main__:main'
  16. ]
  17. },
  18. )