-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (55 loc) · 1.33 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
[build-system]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "lmdbsystem"
version = "0.2.2"
description = "Abstraction for read and write to the lmdb file"
readme = "README.md"
keywords = [ "lmdbsystem", "lmdb" ]
authors = [
{ name = "Dao Quang Duy", email = "[email protected]" },
]
maintainers = [
{ name = "Rabiloo Developers", email = "[email protected]" },
]
license = {text = "The MIT License"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
]
dependencies = [
"lmdb",
"datas-helper[image]",
"tqdm"
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"flake8-pyproject",
"pytest",
"pytest-asyncio",
"typing_extensions",
"isort"
]
[project.urls]
"Homepage" = "https://github.com/rabiloo/python-lmdbsystem"
"Repository" = "https://github.com/rabiloo/python-lmdbsystem"
"Bug Tracker" = "https://github.com/rabiloo/python-lmdbsystem/issues"
[tool.flake8]
count = true
max-complexity = 15
max-line-length = 120
statistics = true
ignore = ["W503"]
[tool.black]
target-version = ["py310"]
line-length = 120
[tool.isort]
profile = "black"
lines_between_types = 1
line_length = 120