Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 40 additions & 40 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"

[project]
name = "deleter"
version = "0.1.0"
description = "Accessible and safety-first Windows storage analysis application."
readme = "README.md"
requires-python = ">=3.14,<3.15"
license = {file = "LICENSE"}
authors = [{name = "Deleter contributors"}]
dependencies = [
"PySide6>=6.8,<7",
"accessible-output2>=0.1,<1",
]

[project.urls]
Homepage = "https://github.com/BarryAllen53/Deleter"
Issues = "https://github.com/BarryAllen53/Deleter/issues"

[tool.setuptools.packages.find]
include = ["app*"]

[tool.ruff]
line-length = 160
target-version = "py314"

[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]

[tool.mypy]
python_version = "3.14"
ignore_missing_imports = true
check_untyped_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[build-system]
requires = ["setuptools>=83.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deleter"
version = "0.1.0"
description = "Accessible and safety-first Windows storage analysis application."
readme = "README.md"
requires-python = ">=3.14,<3.15"
license = {file = "LICENSE"}
authors = [{name = "Deleter contributors"}]
dependencies = [
"PySide6>=6.8,<7",
"accessible-output2>=0.1,<1",
]
[project.urls]
Homepage = "https://github.com/BarryAllen53/Deleter"
Issues = "https://github.com/BarryAllen53/Deleter/issues"
[tool.setuptools.packages.find]
include = ["app*"]
[tool.ruff]
line-length = 160
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.14"
ignore_missing_imports = true
check_untyped_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
Loading