hikari_uploader/pyproject.toml
odrling 57927955cf
add mypy config for stubs
also remove setuptools stubs now that it is not used in the codebase
2024-03-22 00:31:29 +01:00

36 lines
651 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hikari"
dynamic = ["version"]
license = {file = "LICENSE"}
dependencies = [
"pyperclip",
"requests",
"requests-toolbelt",
"rich",
"typer",
]
[project.urls]
Homepage = "https://codeberg.org/odrling/hikari_uploader"
Repository = "https://codeberg.org/odrling/hikari_uploader.git"
Issues = "https://codeberg.org/odrling/hikari_uploader/issues"
[project.scripts]
hikari = "hikari.hikari:main"
[tool.hatch.version]
path = "hikari/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/hikari",
]
[tool.mypy]
mypy_path = "stubs"