-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.23 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
[tool.poetry]
name = "emuleo"
version = "1.0.0-alpha1"
description = "A toy implementation of a web framework in python"
authors = ["raj23689 <92665411+raj23689@users.noreply.github.com>"]
readme = "README.md"
repository = "https://github.com/raj23689/Emuleo"
homepage = "https://raj23689.github.io/Emuleo/"
classifiers = [
"Development status :: 1 - Alpha"
]
packages = [
{ include = "emuleo" }
]
[tool.poetry.dependencies]
python = "^3.12"
rich = "^13.7.0"
jinja2 = "^3.1.3"
uvicorn = {version = "^0.27.1", extras = ["standard"]}
rich-click = "^1.7.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[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"
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
src_paths = ["emuleo"]
[tool.mypy]
python_version = "3.12"
strict = true