This repository was archived by the owner on Feb 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
80 lines (70 loc) · 2.35 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
75
76
77
78
79
80
[project]
name = "confy-cli"
version = "0.2.0"
description = "CLI client for the Confy encrypted communication system"
authors = [
{name = "Henrique Sebastião", email = "contato@henriquesebastiao.com"},
{name = "Lucas Sousa", email = "lucasdedeus-15@hotmail.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Chat",
"Topic :: Security :: Cryptography",
"Topic :: Utilities",
]
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.13,<4.0"
dependencies = [
"typer (>=0.15.4,<0.16.0)",
"websockets (>=15.0.1,<16.0.0)",
"pydantic-settings (>=2.12.0,<3.0.0)",
"confy-addons (>=1.2.0,<2.0.0)",
"prompt-toolkit (>=3.0.52,<4.0.0)",
"httpx (>=0.28.1,<0.29.0)",
]
[tool.poetry.urls]
"Source" = "https://github.com/confy-security/cli"
"Bug Tracker" = "https://github.com/confy-security/cli/issues"
"Changelog" = "https://github.com/confy-security/cli/blob/main/CHANGELOG"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.2"
taskipy = "^1.14.1"
radon = "^6.0.1"
bandit = "^1.9.3"
mypy = "^1.19.1"
[tool.ruff]
line-length = 99
[tool.ruff.lint]
preview = true
select = ['I', 'F', 'E', 'W', 'PL', 'PT', 'D', 'UP', 'PERF']
[tool.ruff.format]
preview = true
quote-style = 'single'
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"main.py" = ['PLW0603', 'PLR0915', 'PLR0912', 'PLR0914']
"__init__.py" = ['D104']
[tool.poetry.scripts]
confy = 'confy_cli.main:app'
[tool.taskipy.tasks]
lint = 'poetry run ruff check .; poetry run ruff check . --diff'
format = 'poetry run ruff format .; poetry run ruff check . --fix'
mypy = 'poetry run mypy -p confy_cli --ignore-missing-imports'
radon = 'poetry run radon cc ./confy_cli -a -na'
bandit = 'poetry run bandit -r ./confy_cli'