-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
81 lines (74 loc) · 2.3 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
[tool.poetry]
name = "declarativex"
version = "1.0.0"
description = "Declarative HTTP client for Python"
authors = ["Vladyslav Halatskyi <xfloydya@gmail.com>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
documentation = "https://declarativex.dev"
keywords = ["http", "declarative", "client", "async", "httpx", "pydantic"]
repository = "https://github.com/floydya/declarativex"
homepage = "https://declarativex.dev"
[tool.poetry.urls]
"Bug Tracker" = 'https://github.com/floydya/declarativex/issues'
[tool.poetry.dependencies]
python = ">=3.9,<4"
httpx = "^0.25.0"
pydantic = ">1,<3"
h2 = {version = ">=3,<5", optional = true}
brotli = {version = "*", optional = true, markers = "platform_python_implementation == 'CPython'"}
brotlicffi = {version = "*", optional = true, markers = "platform_python_implementation != 'CPython'"}
graphql-py = {version = "^0.8.1", optional = true}
[tool.poetry.extras]
http2 = ["h2"]
brotli = [
"brotli",
"brotlicffi",
]
graphql = ["graphql-py"]
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
pylint = "^3.0.3"
pytest = "^7.4.1"
pytest-asyncio = "^0.21.0"
coverage = "^7.3.0"
pytest-cov = "^4.1.0"
mypy = "^1.5.1"
types-setuptools = "^68.1.0.1"
mkdocs-material = "^9.2.8"
markdown-include = "^0.8.1"
pytest-xdist = "^3.3.1"
pytest-mock = "^3.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = [
"tests",
]
pythonpath = [
"src",
]
log_cli = true
log_cli_level = "INFO"