-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (57 loc) · 1.43 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
[tool.poetry]
name = "redis-purse"
version = "2.0.1"
description = "High Level Asyncio interface to redis"
license = "Apache-2.0"
authors = ["mk <[email protected]>"]
maintainers = []
readme = "README.md"
homepage = "https://plataux.com"
repository = "https://github.com/plataux/purse"
documentation = ""
keywords = ['key-value',"caching", "messaging"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
packages = [
{ include = "purse", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
pydantic = "^2.7"
redis = "^5.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0"
tox = "^3.28"
pytest = "^7.4"
pytest-cov = "^4.1"
mypy = "^1.5"
sphinx = "^4.5"
sphinx-rtd-theme = "^1.2"
recommonmark = "^0.7"
pydantic-settings = "*"
[build-system]
requires = ["setuptools>=42.0","wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=purse"
testpaths = [
"tests",
]
[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true