forked from mrf345/flask_googletrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Flask-Googletrans
-------------
A Flask extension to add Googletrans google translation to the template
with ability to cache translation to external pretty .json file
"""
from setuptools import setup
setup(
name='Flask-Googletrans',
version='0.9',
url='https://github.com/mrf345/flask_googletrans/',
download_url='https://github.com/mrf345/flask_googletrans/archive/0.8.tar.gz',
license='MIT',
author='Mohamed Feddad',
author_email='[email protected]',
description='Googletrans google translation flask extension',
long_description=__doc__,
py_modules=['translator'],
packages=['flask_googletrans'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'googletrans'
],
keywords=['flask', 'extension', 'google', 'translate', 'googletrans', 'json'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
setup_requires=['pytest-runner'],
test_requires=['pytest']
)