-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (33 loc) · 1.01 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
"""
Flask-Locale
-----------
Adds i18n/l10n support to Flask applications.
"""
from setuptools import setup
setup(
name='Flask-Locale',
version='1.0.4',
url='http://github.com/derkan/flask-locale',
license='BSD',
author='Erkan Durmus',
author_email='[email protected]',
description='Adds i18n/l10n support to Flask applications easily. Uses CSV files(or database) to load translations.',
long_description=open('README.rst').read(),
packages=['flask_locale'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'speaklater'
],
classifiers=[
'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'
]
)