-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 1.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
[project]
name = "httpx-easy"
version = "0.1.0"
description = "Httpx, but made easy"
authors = [
{name = "danialcala94",email = "danielalcalavalera@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.8,<3.14"
[project.urls]
Homepage = "https://github.com/Implosiv3/httpx-easy"
Issues = "https://github.com/Implosiv3/httpx-easy/issues"
[tool.poetry.dependencies]
# Mandatory
pystandards = { version = ">=0.0.18,<1.0.0", optional = false }
httpx = { version = ">=0.28.1,<9999.9.9", optional = false }
aiofiles = { version = ">=24.1.0,<9999.9.9", optional = false}
python-dotenv = { version = ">=0.0.1,<9999.0.0", optional = false }
# Optional
[tool.poetry]
packages = [{include = "httpx_easy", from = "src"}]
[tool.poetry.group.dev.dependencies]
pytest = { version = "^8.3.5", optional = false }
pytest-asyncio = { version = ">=0.24.0", optional = false }
pytest-easy = { version = ">=0.0.5,<1.0.0", optional = false }
[tool.pytest.ini_options]
markers = [
"mandatory: mandatory tests for release",
"additional: exhaustive and demanding tests"
]
asyncio_default_fixture_loop_scope = 'function'
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"