-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (46 loc) · 1.13 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
# SPDX-License-Identifier: Apache-2.0 OR MIT
#
# SPDX-FileCopyrightText: Copyright 2020 Micron Technology, Inc.
[project]
name = "hse"
dynamic = [
"version"
]
description = "HSE is a fast embeddable key-value store designed for SSDs and persistent memory."
maintainers = [
{ name = "Micron HSE", email = "hse@micron.com" },
]
readme = "README.md"
license = { text = "Apache-2.0 OR MIT" }
requires-python = ">=3.6"
keywords = [
"micron",
"hse",
"key",
"value",
"database",
"bindings",
"heterogeneous",
"memory",
"storage",
"engine",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Cython",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Typing :: Typed",
]
[project.urls]
repohome = "https://github.com/hse-project/hse-python"
projecthome = "https://github.com/hse-project"
[build-system]
requires = [
"meson-python",
"Cython >= 0.29.21",
]
build-backend = "mesonpy"