2023-10-31 10:32:05 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "buildbot-nix"
|
|
|
|
authors = [
|
|
|
|
{ name = "Jörg Thalheim", email = "joerg@thalheim.io" },
|
|
|
|
]
|
|
|
|
description = "A nixos module to make buildbot a proper Nix-CI."
|
|
|
|
readme = "README.rst"
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
license = {text = "MIT"}
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python"
|
|
|
|
]
|
|
|
|
version = "0.0.1"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["buildbot_nix"]
|
|
|
|
|
2023-09-18 13:41:34 +00:00
|
|
|
[tool.ruff]
|
|
|
|
target-version = "py311"
|
|
|
|
line-length = 88
|
2023-10-12 13:58:59 +00:00
|
|
|
select = ["E", "F", "I", "U", "N"]
|
2023-09-18 13:41:34 +00:00
|
|
|
ignore = [ "E501" ]
|
|
|
|
|
2023-09-10 08:11:56 +00:00
|
|
|
[tool.mypy]
|
|
|
|
python_version = "3.10"
|
2023-10-12 13:58:59 +00:00
|
|
|
pretty = true
|
2023-09-10 08:11:56 +00:00
|
|
|
warn_redundant_casts = true
|
|
|
|
disallow_untyped_calls = true
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
no_implicit_optional = true
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "buildbot.*"
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "buildbot_worker.*"
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "twisted.*"
|
|
|
|
ignore_missing_imports = true
|