27 lines
566 B
TOML
27 lines
566 B
TOML
[build-system]
|
|
requires = ["setuptools >= 77.0.3"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "common"
|
|
description = "Reusable code stubs"
|
|
version = "0.1.6"
|
|
requires-python = ">=3.13"
|
|
authors = [
|
|
{ name="BreakerBear", email="breakerbear@autistic.men" },
|
|
]
|
|
dependencies = [
|
|
"trio",
|
|
"trio-websocket",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.autistic.men/Utilities/common"
|
|
Issues = "https://git.autistic.men/Utilities/common/issues"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tools.setuptools.package-data]
|
|
"common.jsonrpc2" = ["*.js"]
|