-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (38 loc) · 1.35 KB
/
setup.cfg
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
[metadata]
name = seive_cache
summary = A simple implementation of SEIVE caching algorithm
description_file =
README.md
author = Pham Le Gia Dai
author_email = daipham.3213@gmail.com
python_requires = >=3.10
classifier =
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
[entry_points]
dogpile.cache =
sieve_cache.memory = sieve_cache.backends.memory:InMemoryDriver
[flake8]
# [H104]: Empty file with only comments
# [W504]: Line break after binary operator
# [W503]: Line break before binary operator
# [H306]: Alphabetically order your imports by the full module path
# [H405]: Multi line docstring summary not separated with an empty line
# [I202]: Additional newline in a group of imports.
ignore = H104,W504,H306,H405,W503,I202
show-source = true
builtins = _
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build
import-order-style = pep8
# [H106]: Don't put vim configuration in source files
# [H203]: Use assertIs(Not)None to check for None
# [H204]: Use assert(Not)Equal to check for equality
# [H205]: Use assert(Greater|Less)(Equal) for comparison
# [H904]: Delay string interpolations at logging calls
enable-extensions = H106,H203,H204,H205,H904
[extras]
redis =
redis