-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.18 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
[tool.poetry]
name = "expiring-lru-cache"
version = "0.0.0-dev" # dynamically set in CI
description = "LRU caching with expiration period."
authors = ["Murilo Kuniyoshi Suzart Cunha <[email protected]>", "Bart Smeets <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://datarootsio.github.io/expiring-lru-cache/"
repository = "https://github.com/datarootsio/expiring-lru-cache"
keywords = ["caching", "expiration", "drop-in", "replacement"]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pre-commit = "^2.20.0"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
mike = "^1.1.2"
mkdocs = "^1.3.1"
mkdocs-material = "^8.3.9"
mkdocs-autorefs = "^0.4.1"
mkdocs-coverage = "^0.2.5"
mkdocstrings = {extras = ["python"], version = "^0.19.0"}
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"
# Devtools not in environment, but used in `pre-commit`
[tool.black]
include = "(expiring_lru_cache/|tests/)"
[tool.mypy]
files = ["expiring_lru_cache", "tests"]
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.isort]
skip_glob = ["docs/*"]
profile = "black"