A tool which can be used to search and play YouTube music!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 626 B

4 years ago
1234567891011121314151617181920
  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. )