-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (65 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "flow-it-api"
dynamic = ["version"]
description = "Python API library client for the FlowIt VMC machine"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Alberto Geniola", email = "albertogeniola@gmail.com"},
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0.0",
"websockets>=12.0",
]
[project.urls]
Homepage = "https://github.com/albertogeniola/flow-it-api"
Repository = "https://github.com/albertogeniola/flow-it-api"
Issues = "https://github.com/albertogeniola/flow-it-api/issues"
Documentation = "https://albertogeniola.github.io/flow-it-api"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-httpx>=0.30.0",
"pytest-cov>=6.0.0",
"black>=24.0.0",
"isort>=5.13.0",
"mypy>=1.9.0",
"hatch-vcs",
"pre-commit",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.hatch.build.targets.wheel]
packages = ["src/flow_it_api"]
[tool.hatch.version]
source = "vcs"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["tests.*", "example"]
disallow_untyped_defs = false
check_untyped_defs = false
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true