-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (47 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
58 lines (47 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "play-eclipse-ditto"
version = "0.2.0"
description = "Examples to understand and test eclipse-ditto"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"python-dotenv>=1.1.1",
"colorama>=0.4.6",
"httpx>=0.28.1",
"aiohttp>=3.9.0",
"pandas>=2.3.1",
"tqdm>=4.67.1",
"poethepoet>=0.24.0",
"rich>=13.9.4",
"ditto-client>=0.3.0",
"microsoft-kiota-http>=1.9.7",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[dependency-groups]
dev = [
"black>=24.0.0",
"ruff>=0.2.0",
"mypy>=1.8.0",
"hurl>=1.10.0",
]
[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"
[tool.ruff.lint]
select = ["E", "F", "W", "B", "Q", "I", "ASYNC", "T20"]
ignore = ["F401", "E501", "T201"] # Ignore print statements as they're intentional for user feedback
[tool.ruff.lint.flake8-tidy-imports]
[tool.ruff.lint.flake8-tidy-imports.banned-api]
"unittest".msg = "Use `pytest` instead."
[tool.poe]
include = "poe.toml"