-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = [ "setuptools", "wheel" ]
build-backend = "setuptools.build_meta"
[project]
name = "feefifofum"
dynamic = [ "version" ]
requires-python = ">=3.7"
description = "Feature file formatter"
readme = "README.md"
license = { text = "MIT License" }
keywords = [
"BDD",
"behavior-driven-development",
"gherkin",
"feature",
"formatter",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Testing :: BDD",
]
[project.urls]
Homepage = "https://github.com/rushwerks/feefifofum"
[project.scripts]
feefifofum = "feefifofum.main:main"
[tool.setuptools.dynamic]
version = { attr = "feefifofum.__version__" }
[tool.ruff]
line-length = 120
target-version = "py37"
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle - Error
"W", # pycodestyle - Warning
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"ANN", # flake8-annotations
"BLE", # flake8-blind-except
"FBT", # flake8-boolean-trap
"B", # flake8-bugbear
"A", # flake8-builtins
"COM", # flake8-commas
"C4", # flake8-comprehensions
"EM", # flake8-errmsg
"FA", # flake8-future-annotations
"LOG", # flake8-logging
"PT", # flake8-pytest-style
"RSE", # flake8-raise
"RET", # flake8-return
"SIM", # flake8-simplify
"ARG", # flake8-unused-arguments
"PL", # Pylint
"FURB", # refurb
"RUF", # Ruff-specific rules
]
ignore = [
"ANN101", # missing-type-self
"ANN401", # any-type
"COM812", # missing-trailing-comma
"RET504", # unnecessary-assign
"PLR6301", # no-self-use
"PLW1514", # unspecified-encoding
]
[tool.ruff.format]
quote-style = "single"