A tool which can be used to search and play YouTube music!
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

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