-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (65 loc) · 1.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "kicksaw-integration-utils"
version = "2.3.1"
description = "A set of helper functions for CSV to Salesforce procedures, with reporting in AWS S3"
readme = "README.md"
repository = "https://github.com/Kicksaw-Consulting/kicksaw-integration-utils"
authors = [
"Alex Drozd <alex@kicksaw.com>",
"Tim Sabat <tim@kicksaw.com>",
"George Bocharov <george@kicksaw.com>"
]
keywords = ["kicksaw", "aws", "s3", "sqs", "simple salesforce", "csv"]
packages = [
{ include = "kicksaw_integration_utils" }
]
[tool.poetry.dependencies]
python = "^3.8"
simple-salesforce = "^1.10.1"
boto3 = "^1.17.3"
pydantic = "^1.9.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
simple-mockforce = "^0.4.2"
moto = "^4.0.2"
pytest-cov = "^3.0.0"
[tool.poetry.group.lint.dependencies]
black = "^22.8.0"
flake8 = "^5.0.4"
pylint = "^2.15.0"
mypy = "^0.971"
[tool.poetry.group.typing.dependencies]
boto3-stubs = {extras = ["essential"], version = "^1.24.66"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
lines_between_types = 1
[tool.pylint.'MASTER']
fail-under = 8.0
extension-pkg-allow-list = "pydantic"
[tool.pylint.'MESSAGES CONTROL']
disable = [
"missing-module-docstring",
"missing-class-docstring",
"too-few-public-methods",
"useless-super-delegation",
]
[tool.pytest.ini_options]
addopts = "-v --cov=kicksaw_integration_utils --cov-report=term --cov-report=xml --cov-report=html"
testpaths = [
"tests",
]
[tool.coverage.report]
exclude_lines = [
'pragma: no cover',
'raise AssertionError',
'raise NotImplementedError',
'if __name__ == .__main__.:',
'def __repr__',
'assert',
]
precision = 1
skip_empty = true
sort = "-Cover"