-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (19 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
23 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-License-Identifier: MIT
# Copyright 2025 Beslogic Inc.
[build-system]
# Using an upperbound pin to prevent sudden breakage.
# Since we're using a deprecated feature of setuptools, it could be removed in a major update.
requires = ["setuptools >=61,<81"]
build-backend = "setuptools.build_meta"
[project]
name = "Beslogic-Ruff-Config"
version = "1.0.1"
license = { file = "LICENSE" }
description = "Ruff rules and configs used at Beslogic"
readme = "README.md"
# Note: 0.13.3 is higher than required-version of 0.13 because we promote using `ruff format --check --output-format=github`
dependencies = ["ruff >=0.13.3"] # Keep in sync with required-version in ruff.toml
[tool.setuptools.data-files]
"Beslogic-Ruff-Config" = ["ruff.toml"] # installs to <venv>/Beslogic-Ruff-Config/
[dependency-groups]
dev = ["dprint-py >=0.50.2.0"]