-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 852 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 852 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
[tool.poetry]
name = "pycep"
version = "1.0.2"
description = "Consulta CEPs em vários serviços (Correios, ViaCep, OpenCep) de maneira totalmente assíncrona"
authors = ["Erick Duarte <erickod@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/erickod/pycep"
repository = "https://github.com/erickod/pycep"
[tool.poetry.dependencies]
python = ">= 3.10, <= 3.13"
httpx = "0.24.1"
aiohttp = "^3.10.10"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
black = "^23.9.1"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
ruff = "^0.1.1"
pytest-asyncio = "^0.21.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.coverage.report]
exclude_also = ["class HttpClient(Protocol):"]
[tool.coverage.run]
omit = ["*/protocols/*", "*/__init__.py", "*/tests/*"]