A tool which can be used to search and play YouTube music!
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

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