57 lines
1.2 KiB
TOML
57 lines
1.2 KiB
TOML
[project]
|
|
name = "atlasimagecomposer"
|
|
version = "0.1.0-a.1"
|
|
dependencies = [
|
|
"pillow~=10.4.0",
|
|
"requests~=2.32.3",
|
|
"tqdm~=4.66.5",
|
|
]
|
|
requires-python = ">= 3.10"
|
|
authors = [{name = "Firq", email = "firelp42@gmail.com"}]
|
|
maintainers = [{name = "Firq", email = "firelp42@gmail.com"}]
|
|
description = "Tool to manage requests for supports"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
|
|
[project.scripts]
|
|
atlasimagecomposer = "atlasimagecomposer.compose:run"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["atlasimagecomposer*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed"]
|
|
|
|
[project.optional-dependencies]
|
|
lint = [
|
|
"pylint~=3.2.5",
|
|
]
|
|
typing = [
|
|
"mypy~=1.10.1",
|
|
"types-tqdm~=4.66.0",
|
|
"types-requests~=2.32.0",
|
|
]
|
|
|
|
[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"
|