2015-06-05 16:43:18 +02:00
|
|
|
#!/usr/bin/env python
|
2017-04-01 13:03:02 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2017-03-10 15:15:21 +01:00
|
|
|
import os.path
|
2017-04-28 13:51:43 +02:00
|
|
|
import re
|
|
|
|
|
2015-06-05 16:43:18 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2017-03-10 15:15:21 +01:00
|
|
|
|
2017-04-28 13:51:43 +02:00
|
|
|
def get_file(*paths):
|
|
|
|
path = os.path.join(*paths)
|
2017-03-10 15:15:21 +01:00
|
|
|
try:
|
2017-04-01 13:03:02 +02:00
|
|
|
with open(path, 'rb') as f:
|
|
|
|
return f.read().decode('utf8')
|
2017-03-10 15:15:21 +01:00
|
|
|
except IOError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-04-28 13:51:43 +02:00
|
|
|
def get_version():
|
|
|
|
init_py = get_file(os.path.dirname(__file__), 'googletrans', '__init__.py')
|
|
|
|
pattern = r"{0}\W*=\W*'([^']+)'".format('__version__')
|
|
|
|
version, = re.findall(pattern, init_py)
|
|
|
|
return version
|
|
|
|
|
|
|
|
|
|
|
|
def get_description():
|
|
|
|
init_py = get_file(os.path.dirname(__file__), 'googletrans', '__init__.py')
|
|
|
|
pattern = r'"""(.*?)"""'
|
|
|
|
description, = re.findall(pattern, init_py, re.DOTALL)
|
|
|
|
return description
|
|
|
|
|
|
|
|
|
|
|
|
def get_readme():
|
|
|
|
return get_file(os.path.dirname(__file__), 'README.rst')
|
|
|
|
|
|
|
|
|
2015-06-05 16:43:18 +02:00
|
|
|
def install():
|
|
|
|
setup(
|
2017-03-10 15:15:21 +01:00
|
|
|
name='googletrans',
|
2017-04-28 13:51:43 +02:00
|
|
|
version=get_version(),
|
|
|
|
description=get_description(),
|
|
|
|
long_description=get_readme(),
|
2017-03-10 15:15:21 +01:00
|
|
|
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',
|
2018-12-19 17:04:17 +01:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2020-06-08 12:09:24 +02:00
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8'],
|
2017-03-10 15:15:21 +01:00
|
|
|
packages=find_packages(exclude=['docs', 'tests']),
|
|
|
|
keywords='google translate translator',
|
2015-06-05 17:45:33 +02:00
|
|
|
install_requires=[
|
2020-06-14 08:42:32 +02:00
|
|
|
'httpx==0.13.3',
|
2015-06-05 17:45:33 +02:00
|
|
|
],
|
2020-07-08 18:37:44 +02:00
|
|
|
python_requires= '>=3.6',
|
2017-03-10 15:15:21 +01:00
|
|
|
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()
|