-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 784 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 784 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
32
33
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm[toml]>=7.0.5"]
build-backend = "setuptools.build_meta"
[project]
name = "sync-debs-to-gemfury"
dependencies = [
"requests",
"strictyaml",
]
requires-python = ">=3.11"
dynamic = ["version"]
[project.scripts]
sync-debs-to-gemfury = "sync_debs_to_gemfury.__main__:main"
[tool.setuptools_scm]
git_describe_command = "git describe --dirty --tags --long --exclude v[1-9] --exclude v[1-9][0-9] --exclude v[1-9][0-9][0-9]"
[tool.isort]
profile = "black"
line_length = 88
skip_gitignore = true
atomic = true
[tool.ruff]
target-version = "py311"
select = ["E", "F", "I001", "PGH004"]
fix = true
fixable = ["I001"]
isort.combine-as-imports = true
isort.known-first-party = ["sync_debs_to_gemfury"]
force-exclude = true