-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (53 loc) · 1.48 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
[project]
name = "queutils"
version = "0.8.5"
authors = [{ name = "Jylpah", email = "[email protected]" }]
description = "Handy Python Queue utilies"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries",
]
dependencies = ["aioconsole>=0.6"]
[project.optional-dependencies]
dev = [
"build>=0.10",
"hatchling>=1.22.4",
"mypy>=1.8",
"pip-chill>=1.0",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-datafiles>=3.0",
"pytest-cov>=4.1",
"pytest-timeout>=2.2",
"ruff>=0.1.9",
]
[project.urls]
"Homepage" = "https://github.com/Jylpah/queutils"
"Bug Tracker" = "https://github.com/Jylpah/queutils/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/queutils"]
[tool.mypy]
exclude = ['tmp']
mypy_path = ['src', 'demos']
[tool.ruff]
include = ["pyproject.toml", "src/**/*.py", "tests/**/*.py", "demos/**/*.py"]
indent-width = 4
extend-include = ["*.ipynb"]
extend-exclude = [".venv", ".vscode"]
lint.fixable = ["ALL"]
[tool.pytest.ini_options]
minversion = "7.4"
addopts = ["-v", "--cov=src"]
testpaths = ["tests", "demos"]
pythonpath = "src" # avoid import path append in test files
[tool.pyright]
reportGeneralTypeIssues = false