skyeweave/pyproject.toml

59 lines
1.3 KiB
TOML
Raw Normal View History

2024-08-09 16:57:33 +00:00
[project]
2024-10-16 20:13:39 +00:00
name = "skyeweave"
2024-10-16 20:28:23 +00:00
version = "1.0.0-c.1"
2024-08-09 16:57:33 +00:00
requires-python = ">= 3.10"
authors = [{name = "Firq", email = "firelp42@gmail.com"}]
maintainers = [{name = "Firq", email = "firelp42@gmail.com"}]
2024-10-16 20:13:39 +00:00
description = "Easily generate any FGO expression sheets from an id"
2024-08-09 16:57:33 +00:00
classifiers = [
2024-10-16 20:13:39 +00:00
"Development Status :: 5 - Production/Stable",
2024-08-09 16:57:33 +00:00
"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",
]
2024-08-09 16:57:33 +00:00
[project.optional-dependencies]
lint = [
"pylint~=3.2.5",
]
typing = [
"mypy~=1.10.1",
"types-tqdm~=4.66.0",
"types-requests~=2.32.0",
]
[project.scripts]
2024-10-16 20:13:39 +00:00
skyeweave = "skyeweave.cli:run"
[tool.setuptools.packages.find]
where = ["."]
2024-10-16 20:13:39 +00:00
include = ["skyeweave*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
2024-08-09 16:57:33 +00:00
[tool.pylint."MAIN"]
disable = [
"line-too-long",
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
2024-10-14 18:23:09 +00:00
"logging-fstring-interpolation",
2024-08-09 16:57:33 +00:00
]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"