-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 921 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 921 Bytes
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
[tool.black]
line-length = 79
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 79
[tool.mypy]
warn_return_any = false
warn_unused_configs = true
[tool.poetry]
name = "markupify"
packages = [{ include = "markupify" }]
version = "1.1.0"
description = "A simple HTML5 generator based-on Python's OOP"
authors = ["ChogirmaliYigit <chogirmali.yigit@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["html", "python", "html-generator", "markup"]
[tool.poetry.dependencies]
python = "^3.11"
beautifulsoup4 = "^4.12.3"
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
black = "^24.2.0"
isort = "^5.13.2"
pre-commit = "^3.6.2"
beautifulsoup4 = "^4.12.3"
[tool.poetry.urls]
"Source" = "https://github.com/old-juniors/markupify"
"Bug Tracker" = "https://github.com/old-juniors/markupify/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"