-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
147 lines (128 loc) · 3.4 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "redis-dict"
version = "3.2.0"
description = "Dictionary with Redis as storage backend"
authors = [
{name = "Melvin Bijman", email = "bijman.m.m@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = [
"redis>=4.0.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Database",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Object Brokering",
"Topic :: Database :: Database Engines/Servers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
keywords = [
"redis", "python", "dictionary", "dict", "key-value",
"database", "caching", "distributed-computing",
"dictionary-interface", "large-datasets",
"scientific-computing", "data-persistence",
"high-performance", "scalable", "pipelining",
"batching", "big-data", "data-types",
"distributed-algorithms", "encryption",
"data-management",
]
[project.optional-dependencies]
dev = [
"coverage==5.5",
"hypothesis==6.70.1",
"mypy>=1.8.0",
"mypy-extensions>=1.0.0",
"types-pyOpenSSL>=24.0.0.0",
"types-redis>=4.6.0",
"typing_extensions>=4.5.0",
"attrs==22.2.0",
"cffi==1.15.1",
"cryptography==43.0.1",
"exceptiongroup==1.1.1",
"future==0.18.3",
"pycparser==2.21",
"snowballstemmer==2.2.0",
"sortedcontainers==2.4.0",
"tomli==2.0.1",
"setuptools>=68.0.0",
"bandit",
"pylama>=8.4.1",
"pycodestyle==2.10.0",
"pydocstyle==6.3.0",
"pyflakes==3.0.1",
"mccabe==0.7.0",
"pylint==3.2.7",
"darglint",
"pydocstyle",
"autopep8",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
"tomli",
"myst-parser",
]
build = [
"build",
"twine",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["redis_dict"]
[tool.setuptools.package-data]
redis_dict = ["py.typed"]
[tool.coverage.run]
source = ["redis_dict"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"if TYPE_CHECKING:",
]
show_missing = true
[tool.mypy]
python_version = "3.8"
strict = true
mypy_path = "src"
files = ["src"]
namespace_packages = true
explicit_package_bases = true
[tool.pylama]
ignore = "E501,E231"
skip = "*/.tox/*,*/.env/*,build/*"
linters = "pycodestyle,pyflakes,mccabe"
max_line_length = 120
paths = ["src/redis_dict"]
[tool.autopep8]
max_line_length = 120
aggressive = 1
recursive = true
-in-place = true
[project.urls]
Homepage = "https://github.com/Attumm/redisdict"
Documentation = "https://attumm.github.io/redis-dict/"
Repository = "https://github.com/Attumm/redisdict.git"
Changelog = "https://github.com/Attumm/redisdict/releases"