-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
pyproject.toml
52 lines (49 loc) · 1.57 KB
/
pyproject.toml
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
[tool.poetry]
name = "flask-babel"
version = "4.0.0"
description = "Adds i18n/l10n support for Flask applications."
authors = ["Armin Ronacher"]
maintainers = ["Tyler Kennedy <tk@tkte.ch>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/python-babel/flask-babel"
documentation = "https://python-babel.github.io/flask-babel/"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
include = [
{ path = "CHANGELOG", format = "sdist" },
{ path = "README.md", format = "sdist" },
{ path = "LICENSE", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.8"
pytz = ">=2022.7"
Flask = ">=2.0"
Babel = ">=2.12"
Jinja2 = ">=3.1"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
pytest = "^7.2.0"
pytest-mock = "^3.10.0"
bumpversion = "^0.6.0"
ghp-import = "^2.1.0"
Sphinx = "^5.3.0"
coverage = "^6.4.4"
pytest-cov = "^3.0.0"
furo = "^2022.12.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"