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. )