-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (79 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
95 lines (79 loc) · 2.19 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "httprest"
version = "0.4.3"
description = "A library for making simple REST-like HTTP requests"
authors = ["Andrii Nechaiev <andrewnech@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/litteratum/httprest"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.11"
requests = {version = "^2", optional = true}
[tool.poetry.extras]
requests-client = ["requests"]
[tool.poetry.group.test.dependencies]
pytest = "^9"
pytest-cov = "^7"
responses = "^0.26"
[tool.poetry.group.lint.dependencies]
black = {version = "^26", python = "3.11"}
pylint = {version = "^4", python = "3.11"}
flake8 = {version = "^7.1.1", python = "3.11"}
flake8-bugbear = {version = "^25", python = "3.11"}
mypy = {version = "^1.11.1", python = "3.11"}
pydocstyle = {version = "^6.3.0", python = "3.11"}
types-requests = "^2.32.0.20240914"
pip-audit = "^2.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
line_length = 79
profile = "black"
[tool.flake8]
max-line-length = 79
extend-ignore = "E203"
[tool.mypy]
ignore_missing_imports = true
[tool.pydocstyle]
ignore = "D102,D105,D107,D203,D213,D413"
[tool.pylint.'MAIN']
py-version=3.9
[tool.pylint.'BASIC']
good-names = [
"i",
"j",
"k",
"_",
"id",
"db"
]
[tool.pylint.'MESSAGES CONTROL']
disable = [
"fixme",
"import-error",
"too-many-positional-arguments",
]
[tool.pylint.'VARIABLES']
allowed-redefined-builtins = "id"
[tool.pylint.'DESIGN']
min-public-methods=0