This repository has been archived by the owner on Aug 27, 2020. It is now read-only.
forked from python-babel/flask-babel
-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
58 lines (49 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""
Flask-BabelEx
-------------
Adds i18n/l10n support to Flask applications with the help of the
`Babel`_ library.
This is fork of official Flask-Babel extension with following features:
1. It is possible to use multiple language catalogs in one Flask application;
2. Localization domains: your extension can package localization file(s) and use them
if necessary;
3. Does not reload localizations for each request.
Links
`````
* `documentation <http://packages.python.org/Flask-BabelEx>`_
* `development version
<http://github.com/mrjoes/flask-babelex/zipball/master#egg=Flask-BabelEx-dev>`_
* `original Flask-Babel extension <https://pypi.python.org/pypi/Flask-Babel>`_.
.. _Babel: http://babel.edgewall.org/
"""
from setuptools import setup
setup(
name='Flask-BabelEx',
version='0.9.4',
url='http://github.com/mrjoes/flask-babelex',
license='BSD',
author='Serge S. Koval',
author_email='[email protected]',
description='Adds i18n/l10n support to Flask applications',
long_description=__doc__,
packages=['flask_babelex'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'Babel>=1.0',
'speaklater>=1.2',
'Jinja2>=2.5'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)