-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (39 loc) · 952 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
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "pypluggy"
version = "0.1.0"
description = "Unofficial Python SDK for Pluggy API"
authors = ["Heitor Carvalho Pinheiro <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
python-dotenv = "^1.0.1"
httpx = "^0.26.0"
asyncio = "^3.4.3"
mypy = "^1.9.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.2"
pytest = "^8.1.1"
blue = "^0.9.1"
isort = "^5.13.2"
pytest-cov = "^4.1.0"
taskipy = "^1.12.2"
[tool.poetry.group.doc.dependencies]
mkdocs-material = "^9.5.13"
mkdocstrings = "^0.24.1"
mkdocstrings-python = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--doctest-modules"
[tool.isort]
profile = "black"
line_length = 79
[tool.taskipy.tasks]
lint = "blue . && isort ."
docs = "mkdocs serve"
[tool.mypy]
warn_unused_configs = true