-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
60 lines (55 loc) · 1.31 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
[build-system]
build-backend = "flit_core.buildapi"
requires = [
"flit-core<4,>=3.2",
]
[project]
name = "lmdbm"
readme = "readme.md"
authors = [ { name = "Dobatymo", email = "Dobatymo@users.noreply.github.com" } ]
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
]
dynamic = [
"description",
"version",
]
dependencies = [
"lmdb",
"typing-extensions>=4",
]
optional-dependencies.bench = [
"genutility[iter,rich,time]>=0.0.103",
"pysos==1.2.9",
"pytablewriter==0.63",
"rocksdict==0.3.5",
"semidbm==0.5.1",
"sqlitedict==1.7",
"unqlite==0.9.2",
"vedis==0.7.1",
]
optional-dependencies.test = [
"genutility[test]",
]
urls.Home = "https://github.com/Dobatymo/lmdb-python-dbm"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.bandit]
skips = [ "B101" ]