-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.27 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
54
55
56
57
58
59
[tool.poetry]
name = "creatio-api-py"
version = "1.2.0"
description = "Python client for Creatio OData API"
license = "GPL-3.0-only"
authors = ["Alejandro González Momblán <alejandro.gonzalez.momblan@evoluciona.es>"]
readme = "README.md"
repository = "https://github.com/yisuschrist/creatio-api-py"
[tool.poetry.dependencies]
python = ">3.9.1,<4.0"
cryptography = "^44.0.0"
pydantic = "^2.8.2"
python-dotenv = "^1.0.1"
requests = "^2.31.0"
requests-cache = "^1.1.1"
requests-pprint = "^1.0.0"
rich = "^13.7.0"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.7"
black = "^24.2.0"
mypy = "^1.8.0"
pre-commit = "^3.6.1"
pylint = "^3.0.3"
pytest = "^8.0.0"
pyupgrade = "^3.15.0"
coverage = "^7.4.1"
types-requests = "^2.32.0.20240712"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["creatio_odata_api", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
implicit_reexport = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"