Leek/pyproject.toml
Toast 6061590270 Move source code to src/leek
This makes the package work again
2025-05-23 00:31:14 +02:00

56 lines
1 KiB
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "leek"
version = "0.0.1"
authors = [{name = "Toast"}]
description = "Project diva megamix + mod manager"
license = "MIT"
classifiers = [
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"pyside6",
"tomlkit",
]
requires-python = ">=3.6"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
leek = "leek.leek_app:main"
[tool.ruff.lint]
select = [
# Defaults
"E4",
"E7",
"E9",
"F",
"W", # Pycodestyle warning
"N" # Pep-8 naming
]
[tool.mypy]
mypy_path = "$MYPY_CONFIG_FILE_DIR/src"
# Pyside 6 doesn't have type info so it's better to just ignore it
[[tool.mypy.overrides]]
module = [
"PySide6.QtGui",
"PySide6.QtCore",
"PySide6.QtQml"
]
ignore_missing_imports = true
[tool.setuptools.data-files]
"share/applications" = ["xyz.toast003.leek.desktop"]