-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
60 lines (54 loc) · 1.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
[tool.poetry]
name = "dictdatabase"
version = "2.5.0"
repository = "https://github.com/mkrd/DictDataBase"
description = "Easy-to-use database using dicts"
authors = ["Marcel Kröker <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
orjson = "^3.8.7"
[tool.poetry.group.dev.dependencies]
super-py = "^0.4.2"
pyinstrument = "^4.4.0"
pytest-cov = "^4.0.0"
path-dict = "^3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
show-fixes = true
line-length = 120
select = [
"ANN", # annotations
"B", # bugbear
"C", # comprehensions
"E", # style errors
"F", # flakes
"I", # import sorting
"M", # meta
"N", # naming
"U", # upgrade
"W", # style warnings
"YTT", # sys.version
]
ignore = [
"ANN101", # missing type annotation for self
"E501", # line length
"UP007", # use X | Y for union (not possible in python 3.8)
"UP006", # Use typing.Tuple for python 3.8 support
"W191", # indentation contains tabs
"E741", # ambiguous variable name
]
[tool.ruff.format]
indent-style = "tab"
quote-style = "double"