-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (119 loc) · 2.43 KB
/
pyproject.toml
File metadata and controls
126 lines (119 loc) · 2.43 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "pythonbible_parser"
author = "Nathan Patton"
author-email = "npatton@gmail.com"
home-page = "https://github.com/avendesora/pythonbible-parser"
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License"
]
requires = [
"defusedxml >=0.7.1",
"pythonbible ==0.10.0",
]
description-file = "README.md"
requires-python = ">=3.8"
[tool.flit.metadata.urls]
Documentation = "https://github.com/avendesora/pythonbible-parser"
Source = "https://github.com/avendesora/pythonbible-parser"
[tool.flit.metadata.requires-extra]
test = [
"pytest >=7.1.2",
"pytest-cov >=3.0.0",
]
doc = [
]
dev = [
"pre-commit >=2.20.0",
]
all = [
]
[tool.isort]
profile = "black"
add_imports = "from __future__ import annotations"
force_single_line = true
[tool.ruff]
select = [
"A",
"ANN",
"ARG",
"B",
"BLE",
"COM",
"C4",
"C90",
"D",
"DTZ",
"E",
"EM",
"ERA",
"EXE",
"F",
"FBT",
"G",
"I",
"ICN",
"INP",
"ISC",
"N",
"NPY",
"PD",
"PGH",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"SLF",
"TCH",
"TID",
"TRY",
"T10",
"T20",
"W",
]
ignore = [
"ANN401",
"D100",
"D101",
"D102",
"D103",
"D104",
"D205",
"D203",
"D213",
"FBT001",
"FBT002",
"FBT003",
]
fix = true
[tool.ruff.per-file-ignores]
"pythonbible_parser/osis/old_osis_parser.py" = ["B019", "PLR0913"]
"pythonbible_parser/osis/osis_book_parser.py" = ["C901", "PLR0913"]
"pythonbible_parser/osis/osis_parser.py" = ["PLR0913"]
"tests/*.py" = ["S101"]
"tests/conftest.py" = ["E501", "RUF"]
[tool.ruff.isort]
force-single-line = true