-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.03 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
[project]
name = "hugedict"
version = "2.14.1"
authors = [{ name = "Binh Vu", email = "[email protected]" }]
description = "A dictionary-like object that is friendly with multiprocessing and uses key-value databases (e.g., RocksDB) as the underlying storage."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
'orjson >= 3.9.0, < 4.0.0',
'loguru >= 0.7.0, < 0.8.0',
'zstandard >= 0.22.0, < 0.23.0',
'tqdm >= 4.64.0, < 5.0.0',
'timer4 >= 1.1.0, < 2.0.0',
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.optional-dependencies]
dev = [
'pytest >= 7.1.3, < 8.0.0',
'pytest-cov >= 4.0.0, < 5.0.0',
'black >= 22.10.0, < 23.0.0',
]
[project.urls]
Homepage = "https://github.com/binh-vu/hugedict"
Repository = "https://github.com/binh-vu/hugedict"
[tool.maturin]
module-name = "hugedict.core"
features = ["extension-module"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"