-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (76 loc) · 1.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flaxkv"
description = "A high-performance dictionary database."
authors = [
{ name = "K.Y", email = "[email protected]" },
]
license-files = { paths = ["LICENSE"] }
readme = "README.md"
keywords = ["persistent-storage", "on-disk dict", "lmdb", "leveldb", "Machine Learning", "NLP"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.8"
dependencies = [
"loguru>=0.7.0",
"orjson>=3.9",
"rich",
"psutil",
"fire",
"pytz",
"numpy",
"msgspec>=0.18.4",
"msgpack",
"lmdb>=1.4.1",
"plyvel>=1.5.0; sys_platform == 'linux'",
"plyvel-ci>=1.5.0; sys_platform == 'win32'",
"plyvel-ci>=1.5.0; sys_platform == 'darwin'",
"typing-extensions>=4.7.1; python_version<'3.11'",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/KenyonY/flaxkv"
Documentation = "https://github.com/KenyonY/flaxkv#flaxkv"
Issues = "https://github.com/KenyonY/flaxkv/issues"
Source = "https://github.com/KenyonY/flaxkv"
[project.optional-dependencies]
test = [
"litestar>=2.5.0",
"pytest",
"pytest-aiohttp",
"sparrow-python",
"uvicorn",
"httpx[http2]",
"pandas",
"hypercorn",
"uvloop; sys_platform == 'linux'",
]
server = [
"uvicorn",
"hypercorn",
"uvloop; sys_platform == 'linux'",
"litestar>=2.5.0",
"httpx[http2]",
]
client = [
"httpx[http2]",
]
[project.scripts]
flaxkv = "flaxkv.__main__:main"
[tool.hatch.version]
path = "flaxkv/__init__.py"
[tool.isort]
profile = "black"
[tool.hatch.build]
include = [
"flaxkv/**/*.py",
]
exclude = [
]
[tool.hatch.build.targets.wheel]
packages = ["flaxkv"]