-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.3 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
[tool.poetry]
name = "brasilapi"
version = "0.1.0"
description = "Python async client for BrasilAPI"
authors = ["Paulo Freitas <paulogeo5@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/paulovitorweb/brasilapi-python"
documentation = "https://github.com/paulovitorweb/brasilapi-python"
repository = "https://github.com/paulovitorweb/brasilapi-python"
license = "MIT"
packages = [{ include = "brasilapi" }]
keywords = ["brasilapi", "http", "asyncio"]
classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
"Framework :: AsyncIO",
"Framework :: aiohttp",
"Framework :: Pydantic :: 2",
]
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.8.6"
pydantic = "^2.4.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
pytest-mock = "^3.11.1"
ruff = "^0.0.280"
black = "^23.7.0"
pytest-cov = "^4.1.0"
coverage-badge = "^1.1.0"
[tool.black]
line-length = 119
[tool.ruff]
line-length = 119
[tool.coverage.run]
source = ["./*"]
omit = ["brasilapi/http/__init__.py"]
[tool.pytest.ini_options]
addopts = "--cov=brasilapi --cov-report=html --cov-report=term tests -vv"
asyncio_mode = "auto"
pythonpath = ["."]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"