File: setup.cfg

package info (click to toggle)
python-async-lru 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 904; makefile: 17
file content (86 lines) | stat: -rw-r--r-- 1,992 bytes parent folder | download
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
[metadata]
name = async-lru
version = attr: async_lru.__version__
url = https://github.com/aio-libs/async-lru
project_urls =
  Chat: Matrix = https://matrix.to/#/#aio-libs:matrix.org
  Chat: Matrix Space = https://matrix.to/#/#aio-libs-space:matrix.org
  CI: GitHub Actions = https://github.com/aio-libs/async-lru/actions
  GitHub: repo = https://github.com/aio-libs/async-lru
description = Simple LRU cache for asyncio
long_description = file: README.rst
long_description_content_type = text/x-rst
maintainer = aiohttp team <team@aiohttp.org>
maintainer_email = team@aiohttp.org
license = MIT License
license_files =
  LICENSE
classifiers =
  License :: OSI Approved :: MIT License

  Intended Audience :: Developers

  Programming Language :: Python
  Programming Language :: Python :: 3
  Programming Language :: Python :: 3 :: Only
  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

  Development Status :: 5 - Production/Stable

  Framework :: AsyncIO

keywords =
  asyncio
  lru
  lru_cache

[options]
python_requires = >=3.9
packages = find:

install_requires =
  typing_extensions>=4.0.0; python_version<"3.11"

[options.package_data]
* =
  py.typed


[flake8]
exclude = .git,.env,__pycache__,.eggs
max-line-length = 88
extend-select = B950
ignore = N801,N802,N803,E252,W503,E133,E203,E501

[coverage:run]
branch = True
omit = site-packages

[isort]
line_length=88
include_trailing_comma=True
multi_line_output=3
force_grid_wrap=0
combine_as_imports=True
lines_after_imports=2

known_first_party=async_lru

[tool:pytest]
addopts= -s --keep-duplicates --cache-clear --verbose --no-cov-on-fail --cov=async_lru --cov=tests/ --cov-report=term --cov-report=html
filterwarnings =
    error
testpaths = tests/
junit_family=xunit2
asyncio_mode=auto
timeout=15
xfail_strict = true

[mypy]
strict=True
pretty=True
packages=async_lru, tests