Files
bugsink/pyproject.toml
Klaas van Schelven b81f754b8c Support Python 3.14
make it so by [a] saying it is so and [b] testing it in the CI/CD
2025-11-09 20:12:55 +01:00

79 lines
2.0 KiB
TOML

[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "bugsink/_version.py"
[project]
name = "bugsink"
authors = [
{name = "Bugsink B.V.", email = "info@bugsink.com"},
]
description = "Self-hosted Error Tracking"
readme = "README.md"
requires-python = ">=3.10"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = ["version", "dependencies"]
[project.scripts]
bugsink-show-version = "bugsink.scripts.show_version:main"
bugsink-manage = "bugsink.scripts.manage:main"
bugsink-util = "bugsink.scripts.util:main"
bugsink-create-conf = "bugsink.scripts.create_conf:main"
bugsink-runsnappea = "bugsink.scripts.runsnappea:main"
[project.urls]
homepage = "https://www.bugsink.com/"
documentation = "https://www.bugsink.com/docs/"
issues = "https://github.com/bugsink/bugsink/issues"
repository = "https://github.com/bugsink/bugsink"
[tool.setuptools]
include-package-data = true # this is the default, but explicit is better than implicit
[tool.setuptools.packages.find]
where = ["."]
include = [
"alerts*",
"api*",
"bsmain*",
"bugsink*",
"compat*",
"events*",
"ee*",
"ingest*",
"issues*",
"files*",
"performance*",
"phonehome*",
"projects*",
"releases*",
"sentry*",
"sentry_sdk_extensions*",
"snappea*",
"static*",
"tags*",
"teams*",
"templates*",
"theme*",
"users*",
]
exclude = [
# This, or similar syntaxes, don't seem to actually work.
# https://stackoverflow.com/q/75091671/339144
# "bugsink/settings/development.py",
] # exclude packages matching these glob patterns (empty by default)
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}