-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 736 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 736 Bytes
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
[tool.poetry]
name = "segmentdb"
version = "0.1.0"
description = "A segment-based database with Write-Ahead Logging"
authors = ["Rishabh Malhotra <rishabhmalhotraa01@gmail.com>"]
readme = "README.md"
license = "MIT"
packages = [{include = "segmentdb", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
sortedcontainers = "^2.4.0"
rbloom = "^1.5.4"
xxhash = "^3.6.0"
lz4 = "^4.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
black = "^23.0"
ruff = "^0.1.0"
mypy = "^1.0"
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.mypy]
python_version = "3.8"
strict = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"