-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
107 lines (92 loc) · 2.85 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
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "unparallel"
version = "0.4.0"
description = "Create async web requests in no time"
readme = "README.md"
authors = ["RafaelWO <[email protected]>"]
license = "MIT"
repository = "https://github.com/RafaelWO/unparallel"
homepage = "https://github.com/RafaelWO/unparallel"
documentation = "https://rafaelwo.github.io/unparallel/"
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = ["async", "http", "requests", "network"]
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
httpx = ">=0.21.0"
tqdm = ">=4.61.2"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.1"
mypy = "^1.7"
mypy-extensions = "^1.0.0"
pre-commit = "^3.5.0"
pydocstyle = "^6.1.1"
pytest = ">=7.4.3,<9.0.0"
safety = ">=2.3.5,<4.0.0"
coverage = "^7.3.2"
coverage-badge = "^1.1.0"
pytest-cov = ">=4.1,<6.0"
pytest-asyncio = "^0.23.2"
respx = ">=0.20.2,<0.22.0"
bump2version = "^1.0.1"
pytest-markdown-docs = "^0.5.0"
pytest-examples = ">=0.0.10,<0.1"
ruff = ">=0.5.1,<0.6.0"
types-tqdm = "^4.66.0.20240106"
bump-my-version = ">=0.21,<0.25"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.1"
mkdocstrings-python = "^1.7.5"
mike = "^2.0.0"
##########################################
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
python_version = "3.8"
strict = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
norecursedirs =["hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]
doctest_optionflags = ["NUMBER", "NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL"]
# Extra options:
addopts = [
"--strict-markers",
"--tb=short",
"--doctest-modules",
"--doctest-continue-on-failure",
]
[tool.coverage.run]
source = ["tests"]
branch = true
[tool.coverage.paths]
source = ["unparallel"]
[tool.coverage.report]
fail_under = 90
show_missing = true