-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
121 lines (110 loc) · 3.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[tool.poetry]
name = "pjrpc"
version = "1.12.2"
description = "Extensible JSON-RPC library"
authors = ["Dmitry Pershin <[email protected]>"]
license = "Unlicense"
readme = "README.rst"
homepage = "https://github.com/dapper91/pjrpc"
repository = "https://github.com/dapper91/pjrpc"
documentation = "https://pjrpc.readthedocs.io"
keywords = [
'json-rpc', 'rpc', 'jsonrpc-client', 'jsonrpc-server',
'requests', 'aiohttp', 'flask', 'httpx', 'aio-pika', 'kombu',
'openapi', 'openrpc', 'starlette', 'django',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Public Domain",
"Framework :: AsyncIO",
"Framework :: Django",
"Framework :: Flask",
"Framework :: Pytest",
"Typing :: Typed",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
aio-pika = { version = ">=8.0", optional = true }
aiofiles = { version = ">=0.7", optional = true }
aiohttp = { version = ">=3.7", optional = true }
django = { version = ">=3.0", optional = true }
docstring-parser = { version = ">=0.8", optional = true }
flask = { version = ">=2.0.0", optional = true }
httpx = { version = ">=0.23.0", optional = true }
jsonschema = {version = ">=3.0,<4.0", optional = true}
kombu = { version = ">=5.1", optional = true }
markupsafe = { version = "==2.0.1", optional = true }
openapi-ui-bundles = { version = ">=0.1", optional = true }
pydantic = {version = ">=2.0", optional = true}
requests = { version = ">=2.0", optional = true }
starlette = { version = ">=0.25.0", optional = true }
werkzeug = { version = ">=2.0", optional = true}
furo = {version = "^2022.12.7", optional = true}
Sphinx = {version = "^5.3.0", optional = true}
sphinx-copybutton = {version = "^0.5.1", optional = true}
sphinx_design = {version = "^0.3.0", optional = true}
toml = {version = "^0.10.2", optional = true}
[tool.poetry.extras]
aio-pika = ['aio-pika']
aiohttp = ['aiohttp']
django = ['django']
docstring-parser = ['docstring-parser']
flask = ['flask', 'markupsafe']
httpx = ['httpx']
jsonschema = ['jsonschema']
kombu = ['kombu']
openapi-ui-bundles = ['openapi-ui-bundles']
pydantic = ['pydantic']
requests = ['requests']
starlette = ['starlette', 'aiofiles']
test = ['docstring-parser', 'flask', 'jsonschema', 'openapi-ui-bundles', 'pydantic', 'werkzeug']
werkzeug = ['werkzeug']
docs = [
'sphinx', 'sphinx-copybutton', 'sphinx_design', 'furo', 'toml',
'aiohttp', 'aio-pika', 'flask', 'jsonschema', 'pydantic', 'requests', 'kombu'
]
[tool.poetry.group.dev.dependencies]
aioresponses = "^0.7.4"
asynctest = "^0.13.0"
codecov = "^2.1.13"
pytest = "^7.4.0"
pytest-aiohttp = "^1.0.4"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
responses = "^0.23.3"
respx = "^0.22.0"
mypy = "^1.7.1"
pre-commit = "~3.2.0"
types-jsonschema = "^4.23.0.20240813"
types-requests = "^2.32.0.20241016"
deepdiff = "^8.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
allow_redefinition = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_decorators = false
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = "django.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "kombu.*"
ignore_missing_imports = true