2015-06-05 16:43:18 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import googletrans
|
2017-03-10 15:15:21 +01:00
|
|
|
import os.path
|
2015-06-05 16:43:18 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2017-03-10 15:15:21 +01:00
|
|
|
|
|
|
|
def readme():
|
|
|
|
path = os.path.join(os.path.dirname(__file__), 'README.rst')
|
|
|
|
try:
|
|
|
|
with open(path) as f:
|
|
|
|
return f.read()
|
|
|
|
except IOError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-06-05 16:43:18 +02:00
|
|
|
def install():
|
|
|
|
setup(
|
2017-03-10 15:15:21 +01:00
|
|
|
name='googletrans',
|
|
|
|
version=googletrans.__version__,
|
|
|
|
description=googletrans.__doc__,
|
|
|
|
long_description=readme(),
|
|
|
|
license='MIT',
|
2015-06-05 16:43:18 +02:00
|
|
|
author='SuHun Han',
|
2017-03-10 15:15:21 +01:00
|
|
|
author_email='ssut' '@' 'ssut.me',
|
2015-06-05 16:43:18 +02:00
|
|
|
url='https://github.com/ssut/py-googletrans',
|
2017-03-10 15:15:21 +01:00
|
|
|
classifiers=['Development Status :: 5 - Production/Stable',
|
|
|
|
'Intended Audience :: Education',
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'License :: Freeware',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Topic :: Education',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6'],
|
|
|
|
packages=find_packages(exclude=['docs', 'tests']),
|
|
|
|
keywords='google translate translator',
|
2015-06-05 17:45:33 +02:00
|
|
|
install_requires=[
|
|
|
|
'requests',
|
|
|
|
],
|
2017-03-10 15:15:21 +01:00
|
|
|
extras_require={
|
|
|
|
'h2': ['hyper'],
|
|
|
|
},
|
|
|
|
tests_require=[
|
|
|
|
'pytest',
|
|
|
|
'coveralls',
|
|
|
|
],
|
|
|
|
scripts=['translate']
|
2015-06-05 16:43:18 +02:00
|
|
|
)
|
|
|
|
|
2017-03-10 15:15:21 +01:00
|
|
|
|
2015-06-05 16:43:18 +02:00
|
|
|
if __name__ == "__main__":
|
2017-03-10 15:15:21 +01:00
|
|
|
install()
|