-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (41 loc) · 1.18 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
[tool.poetry]
name = "aiohttp-spyne"
version = "1.6.0"
description = "Aiohttp transport for Spyne RPC library"
authors = ["Tuomas Virtanen <[email protected]>"]
license = "LGPL-2.1-only"
readme = "README.md"
homepage = "https://github.com/katajakasa/aiohttp-spyne"
repository = "https://github.com/katajakasa/aiohttp-spyne"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
]
keywords = ["asyncio", "aiohttp", "spyne", "soap"]
packages = [
{include = "aiohttp_spyne"},
{include = "aiohttp_spyne/py.typed"},
]
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.9.0"
spyne = "^2.14.0"
[tool.poetry.dev-dependencies]
zeep = {extras = ["async"], version = "^4.1.0"}
black = "^24.4.2"
mypy = "^1.10.1"
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
pytest-aiohttp = "^1.0.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = 3.8
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"