skyeweave/pyproject.toml
Firq db406adfdc
All checks were successful
/ pylint (push) Successful in 10s
/ mypy (push) Successful in 13s
/ lint-and-typing (push) Successful in 15s
/ build-artifacts (push) Successful in 7s
/ publish-artifacts (push) Successful in 8s
/ release (push) Successful in 6s
Fixed issues with sprite overlap, fixed naming of files, added id parameter to CLI, removed numpy dependency
2024-10-13 01:31:16 +02:00

58 lines
1.3 KiB
TOML

[project]
name = "atlasimagecomposer"
version = "0.1.0-c.3"
requires-python = ">= 3.10"
authors = [{name = "Firq", email = "firelp42@gmail.com"}]
maintainers = [{name = "Firq", email = "firelp42@gmail.com"}]
description = "Package that enables people to quickly download and generate all potential spritesheet expressions with a single command"
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
[project.scripts]
atlasimagecomposer = "atlasimagecomposer.cli.cli:run_cli"
[tool.setuptools.packages.find]
where = ["."]
include = ["atlasimagecomposer*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.pylint."MAIN"]
disable = [
"line-too-long",
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
]
[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"