-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (52 loc) · 1.33 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
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "vivid"
version = "1.0.0-alpha2"
description = "A toy webframework made by me for learning purpose."
authors = ["NaviTheCoderboi <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/NaviTheCoderboi/vivid"
documentation = "https://github.com/NaviTheCoderboi/vivid"
homepage = "https://github.com/NaviTheCoderboi/vivid"
classifiers = [
"Development Status :: 3 - Alpha"
]
packages = [
{ include = "vivid" }
]
[tool.poetry.dependencies]
python = "^3.10"
jinja2 = "^3.1.3"
uvicorn = {extras = ["standard"], version = "^0.27.0"}
rich = "^13.7.0"
rich-click = "^1.7.3"
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
ruff = "^0.1.15"
mkdocs = "^1.5.3"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
mkdocs-material = "^9.5.6"
pygments = "^2.17.2"
isort = "^5.13.2"
pre-commit = "^3.6.0"
mypy = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.black]
line-length = 120
target-version = ['py310']
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
src_paths = ["vivid"]
[tool.mypy]
python_version = "3.10"
strict = true