mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-16 18:15:08 -06:00
79 lines
2.0 KiB
TOML
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"]}
|