hikari_uploader/pyproject.toml
odrling 2254ee3ec4
use httpx instead of requests
httpx is already typed, upload monitoring isn't so great
2024-03-22 01:16:57 +01:00

38 lines
683 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hikari"
dynamic = ["version"]
license = {file = "LICENSE"}
dependencies = [
"pyperclip",
"httpx",
"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"
[tool.ruff.lint]
select = ["E", "F", "W", "B", "SIM", "I"]