-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.28 KB
/
pyproject.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "py-gadzooks"
dynamic = ["version"]
description = "A collection of code maintenance tools for Python projects, intended to be used within git hooks."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = []
authors = [
{ name = "Jeremy Silver", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python"
]
dependencies = [
"radon",
]
[project.urls]
Documentation = "https://github.com/jeremander/gadzooks#readme"
Issues = "https://github.com/jeremander/gadzooks/issues"
Source = "https://github.com/jeremander/gadzooks"
[project.scripts]
gadzooks = "gadzooks.main:main"
[tool.hatch.version]
path = "gadzooks/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"gadzooks"
]
[tool.hatch.build.targets.wheel]
include = [
"gadzooks"
]
[tool.yapf]
# NOTE: we'd like to disable vertical whitespace adjustment,
# but there appears to be no way to do that
based_on_style = "pep8"
blank_lines_between_top_level_imports_and_variables = 2
coalesce_brackets = true
column_limit = 10000
dedent_closing_brackets = true
space_between_ending_comma_and_closing_bracket = false
spaces_around_power_operator = true
split_all_top_level_comma_separated_values = true