-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 885 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
41
42
[tool.poetry]
name = "blagues_api"
version = "1.0.4"
description = "Official client for Blagues API"
homepage = "https://www.blagues-api.fr/"
authors = [
"baptiste0928 <contact@baptiste0928.net>",
"DraftMan <contact@draftman.fr>",
"Awakno <awaknocode@gmail.com>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Blagues-API/package-py"
[tool.poetry.dependencies]
python = "^3.8.1"
aiohttp = "^3.9.5"
pydantic = "^2.8.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
python-dotenv = "^0.20.0"
flake8 = "^7.1.0"
flake8-pyproject = "^1.2.3"
black = "^24.4.2"
isort = "^5.13.2"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode="auto"
[tool.flake8]
max-line-length = 120
exclude = [".venv"]
[tool.isort]
profile = "black"