-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (40 loc) · 1.02 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
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "password-generator"
version = "2.0.0"
description = "Generador de contraseñas memorable con modos secure y diceware"
readme = "README.md"
license = { text = "WTFPL" }
requires-python = ">=3.13"
dependencies = ["pyperclip>=1.9.0"]
[project.optional-dependencies]
dev = [
"mypy>=1.15.0",
"pyinstaller>=6.13.0",
"pytest>=8.3.0",
"ruff>=0.11.0",
]
[project.scripts]
password-generator = "password_generator.ui:run_app"
[tool.setuptools]
packages = ["password_generator"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests/unit"]
python_files = ["test_*.py"]
[tool.mypy]
python_version = "3.13"
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
disallow_untyped_defs = true
check_untyped_defs = true
ignore_missing_imports = true