skyeweave/pyproject.toml

74 lines
1.5 KiB
TOML
Raw Normal View History

2024-08-09 18:57:33 +02:00
[project]
2024-10-16 22:13:39 +02:00
name = "skyeweave"
2025-03-29 13:20:43 +01:00
version = "1.0.0-c.4"
2024-08-09 18:57:33 +02:00
requires-python = ">= 3.10"
authors = [{name = "Firq", email = "firelp42@gmail.com"}]
maintainers = [{name = "Firq", email = "firelp42@gmail.com"}]
description = "Helper script to easily generate experssions from FGO expression sheets"
2024-08-09 18:57:33 +02:00
classifiers = [
2024-10-16 22:13:39 +02:00
"Development Status :: 5 - Production/Stable",
2024-08-09 18:57:33 +02:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
2024-08-09 18:57:33 +02:00
]
dependencies = [
"pillow~=10.4.0",
"requests~=2.32.3",
"tqdm~=4.66.5",
]
2024-08-09 18:57:33 +02:00
[project.optional-dependencies]
lint = [
"pylint~=3.2.5",
]
typing = [
"mypy~=1.10.1",
"types-tqdm~=4.66.0",
"types-requests~=2.32.0",
]
2024-10-20 21:38:22 +02:00
testing = [
"pytest~=8.3.3"
]
2024-08-09 18:57:33 +02:00
[project.scripts]
2024-10-16 22:13:39 +02:00
skyeweave = "skyeweave.cli:run"
[tool.setuptools.packages.find]
where = ["."]
2024-10-16 22:13:39 +02:00
include = ["skyeweave*"]
2024-10-20 21:38:22 +02:00
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
2024-08-09 18:57:33 +02:00
[tool.pylint."MAIN"]
disable = [
"line-too-long",
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
2024-10-14 20:23:09 +02:00
"logging-fstring-interpolation",
2024-08-09 18:57:33 +02:00
]
2024-10-17 23:27:20 +02:00
ignore-paths="test/*"
2024-08-09 18:57:33 +02:00
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
strict = true
2024-10-17 23:27:20 +02:00
exclude = [ "test" ]
2024-08-09 18:57:33 +02:00
2024-10-20 21:38:22 +02:00
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-rA -v"
testpaths = [
"tests",
]
2024-08-09 18:57:33 +02:00
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"