generated from marcieltorres/python-boilerplate-project
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
51 lines (43 loc) · 1.03 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
[tool.poetry]
name = "iec-api"
version = "0.0.1"
description = "A Python wrapper for Israel Electric Company API"
authors = ["GuyKh"]
license = "MIT"
readme = "README.md"
maintainers = [
"Guy Khmelnitsky <[email protected]>",
]
repository = "https://github.com/GuyKh/py-iec-api"
keywords = ["python", "poetry", "api", "iec", "israel", "electric"]
[tool.poetry.dependencies]
python = "^3.10"
mashumaro = "^3.13"
pyjwt = "^2.8.0"
requests = "^2.31.0"
pkce = "^1.0.3"
aiohttp = "^3.9.1"
aiofiles = ">=23.2.1,<25.0.0"
pytz = "^2024.1"
[tool.poetry.dev-dependencies]
pytest = "8.3.4"
pytest-cov = "^6.0.0"
ruff = "^0.8.0"
pre-commit = "^4.0.0"
[tool.pytest.ini_options]
testpaths = ["tests",]
[tool.coverage.run]
branch = true
omit = ["*/tests/*", "example.py"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.coverage.html]
directory = "htmlcov"
[tool.ruff]
line-length = 120
lint.select = ["E", "F", "W", "I", "N"]
target-version = "py311"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"