[project]
name = "skyeweave"
version = "1.0.0-c.4"
requires-python = ">= 3.10"
authors = [{name = "Firq", email = "firelp42@gmail.com"}]
maintainers = [{name = "Firq", email = "firelp42@gmail.com"}]
description = "Easily generate any FGO expression sheets from an id"
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
]

dependencies = [
    "pillow~=10.4.0",
    "requests~=2.32.3",
    "tqdm~=4.66.5",
]

[project.optional-dependencies]
lint = [
    "pylint~=3.2.5",
]
typing = [
    "mypy~=1.10.1",
    "types-tqdm~=4.66.0",
    "types-requests~=2.32.0",
]
testing = [
    "pytest~=8.3.3"
]

[project.scripts]
skyeweave = "skyeweave.cli:run"

[tool.setuptools.packages.find]
where = ["."]
include = ["skyeweave*"]
exclude = ["tests*"]

[tool.setuptools.package-data]
"*" = ["py.typed"]

[tool.pylint."MAIN"]
disable = [
    "line-too-long",
    "missing-module-docstring",
    "missing-function-docstring",
    "missing-class-docstring",
    "logging-fstring-interpolation",
]
ignore-paths="test/*"

[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
exclude = [ "test" ]

[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-rA -v"
testpaths = [
    "tests",
]

[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"