-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (46 loc) · 1.45 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
[tool.poetry]
name = "pystream_collections"
version = "0.2.1"
description = "A helper library to manage collections more easily"
authors = ["Mariano Anaya <[email protected]>"]
readme = "README.md"
license = "MIT"
[project]
name = "pystream_collections"
description = "A helper library to manage collections more easily"
version = "0.1"
readme = "README.md"
license = "MIT"
[project.urls]
Source = "https://github.com/rmariano/pystream"
[tool.poetry.dependencies]
python = "^3.12"
pytest-cov = ">=5,<7"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
ruff = ">=0.3,<0.8"
pyright = "^1.1.352"
pytest-cov = ">=5,<7"
pytest-asyncio = ">=0.23.7,<0.25.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "C901", "I", "D", "N", "W", "ANN001", "ANN201", "ANN202", "ANN204", "ANN205", "ANN206", "ANN401"]
ignore = ["D203", "D212"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"