-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 806 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
[tool.poetry]
name = "libmdbx"
version = "0.3.1"
description = "The python bindings to libmdbx."
homepage = "https://github.com/wtdcode/mdbx-py"
authors = ["lazymio <mio@lazym.io>"]
readme = "README.md"
keywords = [
"mdbx",
"libmdbx",
"kvdb",
"bindings"
]
packages = [
{include = "mdbx"}
]
include = [
{ path = "libmdbx/dist/*", format = "sdist"},
{ path = "mdbx/lib/*", format = "wheel" },
]
exclude = [
{ path = "libmdbx/dist/build", format = "sdist"},
]
[tool.poetry.build]
generate-setup-file = false
script = "build_mdbx.py"
[tool.poetry.dependencies]
python = "^3.10"
[build-system]
requires = ["poetry-core", "setuptools", "wheel"] # Not having cmake and ninja due to https://github.com/python-poetry/poetry/issues/8807
build-backend = "poetry.core.masonry.api"