forked from beavyHQ/flask-icu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.27 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
"""
Flask-ICU
-----------
Adds i18n/l10n support to Flask applications with the help of the
`PyICU`_ library.
Links
`````
* `documentation <http://packages.python.org/Flask-ICU>`_
* `development version [Add later]`_ # TODO: Provide link to dev repo
.. _PyICU: https://pypi.python.org/pypi/PyICU/
"""
from setuptools import setup
setup(
name='Flask-ICU',
version='0.9.1',
url='https://github.com/beavyHQ/flask-icu',
license='BSD',
author='Ethan Miller',
author_email='[email protected]',
description='Adds i18n/l10n support to Flask applications',
long_description=__doc__,
packages=['flask_icu'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'pyicu',
'speaklater>=1.2',
'werkzeug==1.0.1'
],
classifiers=[
'Development Status :: 4 - Beta', # TODO: update dev status
'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'
]
)