-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
132 lines (121 loc) · 2.55 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
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
127
128
129
130
131
132
[project]
name = "cfractions"
description = "Python C API alternative to `fractions` module."
authors = [{ name = "Azat Ibrakov", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.9"
dependencies = [
"typing-extensions>=4.12.2,<5.0"
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"hypothesis>=6.118.8,<7.0",
"pytest>=8.3.3,<9.0"
]
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
source = ["cfractions"]
[tool.mypy]
strict = true
[tool.pytest.ini_options]
addopts = "--verbose -s --hypothesis-profile=default"
[tool.ruff]
line-length = 79
[tool.ruff.format]
docstring-code-format = true
quote-style = "single"
skip-magic-trailing-comma = true
[tool.ruff.lint]
preview = true
select = [
# flake8-builtins
"A",
# flake8-annotations
"ANN",
# flake8-unused-arguments
"ARG",
# flake8-bugbear
"B",
# flake8-blind-except
"BLE",
# flake8-comprehensions
"C4",
# pycodestyle
"E",
# Pyflakes
"F",
# flake8-future-annotations
"FA",
# flake8-boolean-trap
"FBT",
# refurb
"FURB",
# isort
"I",
# flake8-implicit-str-concat
"ISC",
# pep8-naming
"N",
# Perflint
"PERF",
# flake8-pie
"PIE",
# flake8-pytest-style
"PT",
# flake8-quotes
"Q",
# flake8-return
"RET",
# flake8-raise
"RSE",
# Ruff-specific rules
"RUF",
# flake8-simplify
"SIM",
# flake8-self
"SLF",
# flake8-debugger
"T10",
# flake8-print
"T20",
# flake8-tidy-imports
"TID",
# pyupgrade
"UP",
# pycodestyle
"W",
]
ignore = [
# disallows `typing.Any` annotation
"ANN401",
# whitespace before ':'
"E203",
]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "single"
[tool.ruff.lint.isort]
case-sensitive = true
combine-as-imports = true
order-by-type = false
relative-imports-order = "closest-to-furthest"
split-on-trailing-comma = false
[tool.setuptools.dynamic]
version = { attr = "cfractions.__version__" }