-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
32 lines (27 loc) · 911 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
[tool.poetry]
name = "sechat"
version = "3.0.0"
description = "A BETTER Stack Exchange chat library."
readme = "README.md"
authors = ["Ginger <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.11.0,<4.0.0"
bs4 = ">=0.0.1,<0.0.3"
aiohttp = "^3.8.3"
backoff = "^2.2.1"
lxml = "^5.3.0"
yarl = "^1.15.2"
pydantic = "^2.5.0"
mkdocs = {version = "^1.6.1", optional = true}
mkdocstrings = {version = ">=0.26.2,<0.28.0", optional = true}
mkdocstrings-python = {version = "^1.12.2", optional = true}
mkdocs-material = {version = "^9.5.42", optional = true}
[tool.poetry.group.dev.dependencies]
black = {version = ">=23.1,<25.0", allow-prereleases = true}
[tool.poetry.extras]
docs = ["mkdocs", "mkdocstrings", "mkdocstrings-python", "mkdocs-material"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"