forked from microformats/mf2py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 918 Bytes
/
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
[tool.poetry]
name = "mf2py"
version = "2.0.1"
description = "Microformats parser"
readme = "README.md"
authors = ["Tom Morris <[email protected]>"]
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup :: HTML"
]
[tool.poetry.dependencies]
python = ">=3.8"
html5lib = "^1.1"
requests = "^2.28.2"
beautifulsoup4 = "^4.11.1"
[tool.poetry.group.dev.dependencies]
lxml = "^4.9.2"
mock = "^5.0.1"
pytest = "^7.2.1"
black = "^23.3.0"
isort = "^5.12.0"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.0"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
[tool.pytest.ini_options]
doctest_optionflags = "NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"