-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.46 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
[project]
name = "flareio-cli"
version = "0.8.0"
description = "CLI interface for the flare.io API."
repository = "https://github.com/Flared/flareio-cli"
readme = "README.md"
keywords = [
"flare",
"sdk",
"cli",
]
authors = [
{ name = "Alexandre Viau", email = "alexandre.viau@flare.io" }
]
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Information Technology",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Topic :: Security",
"Typing :: Typed",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"flareio>=2.1.0",
"pydantic>=2.12.5",
"typer>=0.21.1",
]
[project.scripts]
flareio-cli = "flareio_cli:cli.main"
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=8",
"ruff>=0.15.0",
"ty>=0.0.15",
]
[tool.ruff.lint]
extend-select = [
"I",
"ANN",
"C411",
"C413",
"C414",
"C416",
"C417",
"C419",
"F401",
]
[tool.ruff.lint.isort]
force-single-line = true
lines-after-imports = 2
lines-between-types = 1
force-wrap-aliases = true
combine-as-imports = true
forced-separate = [
"typing",
"flareio",
"flareio_cli",
]