-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
63 lines (57 loc) · 1.42 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
[project]
name = "exls"
version = "0.4.0"
description = "The exalsius CLI"
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"rich>=13.9.4",
"typer>=0.15.2",
"exalsius-api-client==1.45.3",
"pydantic-settings>=2.10.1",
"pyyaml>=6.0.2",
"filelock>=3.17.0",
"termcolor>=2.4.0",
"requests>=2.32.3",
"auth0-python>=5.0.0",
"keyring>=25.6.0",
"qrcode[pil]>=8.2",
"coolname>=2.2.0",
"questionary>=2.1.1",
"ruamel-yaml>=0.18.16",
"cryptography>=46.0.3",
"humanize>=4.15.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["exls*"]
[project.scripts]
exls = "exls.app:app"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pyright]
typeCheckingMode = "strict"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=exls --cov-report=term-missing --no-cov-on-fail"
testpaths = ["tests"]
python_files = "test_*.py"
xfail_strict = true
norecursedirs = [".git", ".venv", "env", "venv*", "build", "dist", ".mypy_cache", ".pytest_cache", "__pycache__"]
markers = [
"unit: mark a test as a unit test",
"integration: mark a test as an integration test",
"e2e: mark a test as an end-to-end test",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
"pre-commit>=4.1.0",
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"ruff>=0.9.9",
"pyright>=1.1.408",
]