forked from BD103/Flask-Rich
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.17 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-Rich"
version = "0.4.1"
description = "Rich implementation for Flask"
license = "MIT"
authors = ["BD103 <[email protected]>", "MaxMixAlex <[email protected]>"]
maintainers = ["MaxMixAlex <[email protected]>"]
readme = "README.md"
repository = "https://github.com/zyf722/Flask-Rich"
documentation = "https://flask-rich.readthedocs.io"
keywords = ["flask", "extension", "rich"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
[tool.poetry.dependencies]
python = "^3.8"
Flask = ">=2.3.3"
rich = "^13.5.2"
stransi = "^0.3.0"
[tool.poetry.group.dev.dependencies]
black = "^21.10b0"
isort = "^5.10.1"
[tool.poetry.group.docs.dependencies]
sphinx = "7.1"
sphinx-rtd-theme = "^1.3.0"
myst-parser = "^2.0.0"
sphinx-copybutton = "^0.5.2"
[tool.black]
line-length = 88
# py10 when ready
target-version = ["py39"]
extend-exclude = '''
/(
| .venv
)/
'''
[tool.isort]
profile = "black"
extend_skip = [".cache"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"