-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[project]
name = "update-lockfile"
description = "Update lockfiles from multiple package managers simultaneously and commit the results."
authors = [
{ name = "Alex Martens", email = "alex+update.lockfile@thinglab.org" },
]
version = "1.0.0"
license = "MIT"
readme = "README.md"
keywords = ["lockfile"]
requires-python = ">= 3.12"
dependencies = ["rich>=13.9.4"]
[project.urls]
Repository = "https://github.com/newAM/update-lockfile"
Changelog = "https://github.com/newAM/update-lockfile/blob/main/CHANGELOG.md"
Issues = "https://github.com/newAM/update-lockfile/issues"
[project.scripts]
update-lockfile = "update_lockfile:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = ["pytest>=8.3.4", "ruff>=0.9.3"]
[tool.ruff.lint]
# Add flake8-bugbear and pep8-naming rules
extend-select = ["B", "N"]