-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.58 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 = "meta-tags-parser"
version = "1.3.0"
description = "Fast and modern meta tags parser (og, twitter, title, description, etc) with snippet support"
authors = ["Denis Anikin <ad@xfenix.ru>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/xfenix/meta-tags-parser/"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "meta_tags_parser" }
]
[tool.poetry.urls]
"Documentation" = "https://github.com/xfenix/meta-tags-parser"
[tool.poetry.dependencies]
python = "^3.8"
httpx = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-cov = "*"
Faker = "*"
pytest-asyncio = "*"
pylint = "*"
mypy = "*"
pytest-xdist = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
lines_after_imports = 2
lexicographical = true
sections = ["FUTURE", "STDLIB", "FIRSTPARTY", "THIRDPARTY", "LOCALFOLDER"]
no_lines_before = ["STDLIB", "THIRDPARTY"]
known_third_party = []
known_local_folder = ["meta_tags_parser"]
[tool.pytest.ini_options]
addopts = "-s --cov=meta_tags_parser --cov=tests --cov-report term-missing"
[tool.pylint.format]
max-line-length=120
[tool.pylint.messages_control]
disable=["logging-fstring-interpolation"]