-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
235 lines (202 loc) · 6.33 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
[tool.poetry]
name = "bitmapist"
version = "3.114"
description="Implements a powerful analytics library using Redis bitmaps."
authors = [
"Amir Salihefendic <[email protected]>",
"Doist Developers <[email protected]>",
]
license="BSD"
readme = "README.md"
repository = "https://github.com/Doist/bitmapist"
keywords=[ "redis", "bitmap", "analytics", "bitmaps", "realtime", "cohort", ]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages=[ { include = "bitmapist" } ]
exclude = ['tests/']
include = [
'AUTHORS',
'README.md',
'static/bitmapist.png',
'static/bitmapist.svg',
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
redis = ">=2.10,<5.0"
python-dateutil = "*"
future = ">=0.14.3,<0.19.0"
Mako= "^1.0.4"
[tool.poetry.dev-dependencies]
pytest-runner = "*"
pytest = "*"
pre-commit = "*"
tox = "*"
mypy = "*"
ruff = "^0.4.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# By default, always show source code snippets.
output-format = 'full'
extend-exclude = [
"env",
"runtime",
]
[tool.ruff.lint]
select = [
"ASYNC", # flake8-async
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"D", # pydocstyle,
"E", "W", # pycodestyle
"F", # pyflakes
"I", # isort
"PL", # pylint
"RUF", # ruff
"S", # flake8-bandit
"T20", # flake8-print
"SIM", # flake8-simplify
"UP", # pyupgrade
"TCH", # flake8-type-checking
"TRY", # tryceratops
"BLE", # flake8-blind-except
"LOG", # flake8-logging
"G", # flake8-logging-format
"RET", # flake8-logging-return
"ISC", # flake8-implicit-str-concat
"INP", # flake8-no-pep420
"PIE", # flake8-pie
"PT", # flake8-pytest-style
"PERF", # perflint
]
ignore = [
## D - pydocstyle ##
# D1XX errors are OK. Don't force people into over-documenting.
"D100", "D101", "D102", "D103", "D104", "D105", "D107",
# These need to be fixed.
"D205",
"D400",
"D401",
## E / W - pycodestyle ##
"E501", # line too long
## PL - pylint ##
# Commented-out rules are rules that we disable in pylint but are not supported by ruff yet.
"PLR6301", # no-self-use
"PLC2701", # import-private-name
# Import order issues
# "PLC0411", # wrong-import-order
# "PLC0412", # wrong-import-position
"PLC0414", # ungrouped-imports
"PLC0415", # import-outside-top-level
# flake8-implicit-str-concat
"ISC001", # May conflict with the formatter
# Documentation issues
# "C0114", # missing-module-docstring
# Complexity issues
"PLR0904", # too-many-public-methods
# "PLC0302", # too-many-lines
"PLR1702", # too-many-nested-blocks
# "PLR0902", # too-many-instance-attributes
"PLR0911", # too-many-return-statements
"PLR0915", # too-many-statements
"PLR0912", # too-many-branches
# "PLR0903", # too-few-public-methods
"PLR0914", # too-many-locals
# "PLC0301", # line-too-long
"PLR0913", # too-many-arguments
"PLR0917", # too-many-positional
"PLR2004", # magic-value-comparison
"PLW0603", # global-statement
"PLW2901", # redefined-loop-name
## RUF - ruff ##
"RUF001", # ambiguous-unicode-character-string
"RUF002", # ambiguous-unicode-character-docstring
"RUF003", # ambiguous-unicode-character-comment
"RUF012", # mutable-class-default
# Enable when Poetry supports PEP 621 and we migrate our confguration to it.
# See: https://github.com/python-poetry/poetry-core/pull/567
"RUF200",
"S101", # assert
"S104", # hardcoded-bind-all-interfaces
"S105", # hardcoded-password-string
"S106", # hardcoded-password-func-arg
"S303", # suspicious-insecure-hash-usage
"S310", # suspicious-url-open-usage
"S311", # suspicious-non-cryptographic-random-usage
"S324", # hashlib-insecure-hash-function
"S603", # subprocess-without-shell-equals-true
"S607", # start-process-with-partial-path
"S608", # hardcoded-sql-expression
## SIM - flake8-simplify ##
"SIM102", # collapsible-if
"SIM114", # if-with-same-arms
"SIM117", # multiple-with-statements
# Enable when the rule is out of preview and false-positives are handled.
# See: https://docs.astral.sh/ruff/rules/in-dict-keys/
"SIM118", # in-dict-keys
## TRY - tryceratops ##
"TRY003", # raise-vanilla-args
"TRY004", # type-check-without-type-error
"TRY301", # raise-within-try
## BLE - flake8-blind-except ##
"BLE001", # blind-except
## RET - flake8-return ##
"RET504", # unnecessary-assign
## PT - flake8-pytest-style ##
"PT004", # pytest-missing-fixture-name-underscore
"PT012", # pytest-raises-with-multiple-statements
## UP - pyupgrade ##
"UP038", # non-pep604-isinstance
## B - flake8-bugbear ##
"B008", # function-call-in-default-argument
"B009", # get-attr-with-constant
"B010", # set-attr-with-constant
"B018", # useless-expression
]
flake8-pytest-style.fixture-parentheses = false
flake8-pytest-style.mark-parentheses = false
pylint.allow-dunder-method-names = [
"__json__",
"__get_pydantic_core_schema__"
]
[tool.ruff.lint.flake8-type-checking]
runtime-evaluated-base-classes = [
"pydantic.BaseModel",
"typing_extensions.TypedDict",
"sqlalchemy.orm.DeclarativeBase",
]
runtime-evaluated-decorators = [
"pydantic.dataclasses.dataclass",
"pydantic.validate_call",
]
[tool.ruff.lint.per-file-ignores]
# Open devnull without a context manager
"conftest.py" = ["SIM115"]
[tool.ruff.lint.isort]
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.ruff.lint.pyupgrade]
# Required by tools like Pydantic that use type information at runtime.
# https://github.com/asottile/pyupgrade/issues/622#issuecomment-1088766572
keep-runtime-typing = true
[tool.ruff.format]
docstring-code-format = true