-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 1.09 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
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "py_scdb"
version = "0.2.2"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
authors = [
{name="Martin Ahindura ", email = "[email protected]"}
]
description = "A very simple and fast key-value store but persisting data to disk, with a 'localStorage-like' API for python."
license_files.paths = ["LICENSE-MIT", "LICENSE-APACHE"]
keywords = ["key-value-store", "cache", "disk-cache", "database", "localStorage"]
readme = "README.md"
[project.optional-dependencies]
test = [
"pytest>=7.2.0",
"pytest-benchmark>=4.0.0",
"pytest-lazy-fixture>=0.6.3",
"pytest-asyncio>=0.20.1"
]
[project.urls]
homepage = "https://github.com/sopherapps/py_scdb"
documentation = "https://github.com/sopherapps/py_scdb"
repository = "https://github.com/sopherapps/py_scdb"
changelog = "https://github.com/sopherapps/py_scdb/blob/master/CHANGELOG.md"