26 lines
475 B
TOML
26 lines
475 B
TOML
[project]
|
|
name = "gotosocial"
|
|
version = "0.1.0"
|
|
description = "A Python library for GoToSocial clients"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Mike Lynch", email = "m.lynch@sydney.edu.au" }
|
|
]
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"requests>=2.32.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
register = "gotosocial.register:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pre-commit>=4.0.1",
|
|
"ruff>=0.8.3",
|
|
]
|